You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The `Connection Idle Ping Time` connection string option is still accepted, but has no effect.
34
23
* If `Connection Reset = False`, `MySqlConnection.Open` will return a pooled connection (if one is available) without testing it for liveness (by pinging the server). This improves performance but may degrade reliability. (`Connection Reset = True`, which is the default, is still recommended for greatest reliability.)
35
24
* If the server has closed the pooled connection, `MySqlConnection.Open` will succeed, but the first operation on that connection will fail. Command execution should be wrapped in a try/catch/retry loop to handle this scenario.
36
-
* Add more values to `MySqlErrorCode`: [#1048](https://github.com/mysql-net/MySqlConnector/issues/1048).
37
-
* Fix bug executing stored procedures with backticks in their names: [#1029](https://github.com/mysql-net/MySqlConnector/issues/1029).
38
-
* Fix rare `ObjectDisposedException` that could be thrown when a connection timeout occurred.
***Breaking** Seal `MySqlCommandBuilder` and `MySqlConversionException`.
44
-
* Fix incorrect value for `MySqlCommand.LastInsertedId` when executing multiple commands: [#1026](https://github.com/mysql-net/MySqlConnector/issues/1026).
45
-
* Add `[Category]`, `[DefaultValue]`, and `[Description]` attributes to all `MySqlConnectionStringBuilder` properties.
* Fix incorrect value for `MySqlCommand.LastInsertedId` when executing multiple commands: [#1026](https://github.com/mysql-net/MySqlConnector/issues/1026).
46
+
* Fix bug executing stored procedures with backticks in their names: [#1029](https://github.com/mysql-net/MySqlConnector/issues/1029).
47
+
* Fix rare `ObjectDisposedException` that could be thrown when a connection timeout occurred.
0 commit comments