MySqlConnector
MySqlConnector copied to clipboard
MySQL Connector for .NET
To simplify the library (removing ifdefs), reduce package size, and possibly enable new features (e.g., pipelines, Utf8String?) remove support for the following platforms: * `netstandard1.3` * .NET 4.5.x * .NET...
Hello, We discovered last few weeks some connection pool issues in our production environment and so we decide to dig a bit more with some load tests. For that we...
Hello, is there any MySqlScript replacement for the original code of Oracle? Couldn't find a class for that. Regards Martin
Hi, We are getting this error "Connect Timeout expired. All pooled connections are in use" periodically. We only start getting these errors after some other exceptions from the server like:...
Working on porting Rebus to MySqlConnector, and there is support for streaming from a source directly into the database via a database parameter, but this appears to not be supported...
This happens randomly on the first call that opens a connection to the database with connection.Open(). The inner exception states "The message received was unexpected or badly formatted". Here is...
Batching was added in https://github.com/mysql-net/MySqlConnector/issues/650. An efficient implementation (using `COM_MULTI`) is only supported by MariaDB server, and that support is being [removed in 10.6.0](https://jira.mariadb.org/browse/MDEV-21612). The implementation complicates the client code...
The wiki for this project only has four pages: * [Home](https://github.com/mysql-net/MySqlConnector/wiki) - no content * [Concurrency Benchmark Results](https://github.com/mysql-net/MySqlConnector/wiki/Concurrency-Benchmark-Results) - very out-of-date, should be deleted * [Schema Collections Supported by GetSchema](https://github.com/mysql-net/MySqlConnector/wiki/Schema-Collections-Supported-by-GetSchema)...
Hi all We've just started project to support MariaDB database in addition to MsSql. In legacy Ms code we had parameter with `ParameterDirection.ReturnValue` in every sp in our DAL engine...