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
Connections are now reset asynchronously in the background: #178.
This speeds up MySqlConnection.Open(Async) but still cleans up connections between uses.
Use DeferConnectionReset=true in the connection string to revert to the old behaviour.
Experimental Use ConnectionIdlePingTime=300 in the connection string to avoid any network I/O when retrieving a connection from the pool; this is fastest but may return invalid connections from Open. This setting is experimental and may change in the future.
Change default value of IgnorePrepare to false: #929.
Calling MySqlCommand.Prepare(Async) will have an effect by default.