Skip to content

Commit 986f538

Browse files
committed
Add link to MySql.Data bug.
1 parent e19bf9c commit 986f538

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/content/tutorials/migrating-from-connector-net.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,3 +294,5 @@ The following bugs in Connector/NET are fixed by switching to MySqlConnector. (~
294294
* ~~[#106244](https://bugs.mysql.com/bug.php?id=106244): `MySqlDataReader.GetFieldValue<Stream>` throws `InvalidCastException`~~
295295
* [#106247](https://bugs.mysql.com/bug.php?id=106247): Can't use ~~`MySqlDbType.Enum` or~~ `MySqlDbType.Set` with prepared command
296296
* [#108756](https://bugs.mysql.com/bug.php?id=108756): Can't insert negative number using prepared statement with MySqlDbType.Int24]
297+
* [#108970](https://bugs.mysql.com/bug.php?id=108970): `MySqlConnectionStringBuilder.ContainsKey` method gives wrong result
298+
* [#109141](https://bugs.mysql.com/bug.php?id=109141): Insert of data into a table results in `System.ArgumentException`

tests/MySqlConnector.Tests/MySqlConnectionStringBuilderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ public void NamedProperty(string propertyName, object value)
556556
Assert.False(csb.TryGetValue(propertyName, out var setValue));
557557
Assert.Null(setValue);
558558
#else
559-
// Connector/NET sets all properties to default values
559+
// Connector/NET sets all properties to default values: https://bugs.mysql.com/bug.php?id=108970
560560
Assert.True(csb.ContainsKey(propertyName));
561561
Assert.True(csb.TryGetValue(propertyName, out var setValue));
562562
#endif

0 commit comments

Comments
 (0)