Releases: mysql-net/MySqlConnector
Releases · mysql-net/MySqlConnector
0.47.0
Download on NuGet
- Support MariaDB GSSAPI authentication: #577.
- Log received error payloads at
Debug
level. - Thanks to @vaintroub for contributions to this release.
0.46.2
0.46.1
0.46.0
0.45.1
0.45.0
0.44.1
Download on NuGet
MySqlCommand.Prepare
will cache the prepared command until the connection is reset.- Improve performance of
MySqlCommand.Prepare
, especially when preparation is unnecessary. - Lazily allocate
MySqlParameterCollection
(accessed viaMySqlCommand.Parameters
) for better performance when command parameters aren't used. - Use
GC.SuppressFinalize
to improve performance when various objects (derived fromComponent
) aren't properly disposed.
0.44.0
0.43.0
Download on NuGet
- Add first version of prepared commands: #534.
- Only single statements (and not stored procedures) are preparable.
- The (new)
IgnorePrepare
connection string option defaults totrue
and must be set tofalse
to use prepared commands.
- Add
CertificateStore
andCertificateThumbprint
connection string options: #536. - Fix bug that rejected sessions from the connection pool if
ChangeDatabase
had been called: #515. - Don't map
TINYINT(1) UNSIGNED
asbool
: #530. - Thanks to @hajekj for contributions to this release.