MySqlConnector
MySqlConnector copied to clipboard
MySQL Connector for .NET
We're having an issue on a Windows Service on a transaction with a loop inside. On this loop we're: - Making an insert; - Sending an Email using AWS SES;...
**Software versions** MySqlConnector version: 2.1.2 Server type (MySQL, MariaDB, Aurora, etc.) and version: MySql 8.0.24 .NET version: .NET 5.0 **Describe the bug** An hour after upgrading from 2.1.0 to 2.1.2,...
**Is your feature request related to a problem? Please describe.** We need support for legacy MySQL Server 5.0 similar to the level the MySql.Data provides. Specifically, we use the MySql.Data.MySqlClient.MySqlCommandBuilder.DeriveParameters...
Hello all, I would like to ask about why in the documentation is explicit about opening an async connection but not about closing and disposing it async, the examples also...
Is there a way to extract some metrics from the pool like idle connections, connections in use, available connections... ?
Based on https://github.com/mysql-net/MySqlConnector/issues/924 and https://github.com/mysql-net/MySqlConnector/issues/1174, there are a small number of users who modify stored procedure definitions in the database at runtime; this can be a problem because MySqlConnector caches...
**Software versions** MySqlConnector version: 2.1.0 Server type (MySQL, MariaDB, Aurora, etc.) and version: MySql 5.7.32 .NET version: net6 (Optional) ORM NuGet packages and versions: EFCore 6.0.0 with Pomelo.EntityFrameworkCore.MySql 6.0.0 Also...
In Npgsql, calling DbConnection.BeginTransaction doesn't actually do anything - it simply sets an in-memory state flag. When a command is next actually executed on the connection, the begin transaction is...
This SO user (https://stackoverflow.com/questions/71742985/how-to-compose-a-connection-string-without-login-credentials-net-mysqlconnector) expects `MySqlConnectionStringBuilder.UserID` to default to the current Unix user when connecting via a Unix socket. That is how some other MySQL client libraries behave: https://dev.mysql.com/doc/refman/8.0/en/user-names.html >...
[Connector/NET 8.0.19 introduces](https://dev.mysql.com/doc/relnotes/connector-net/en/news-8-0-19.html) a new format for the `Server` connection string option: ``` // Example with priority server=(address=192.10.1.52:3305,priority=60),(address=localhost:3306,priority=100); // Example without priority and with multiple ports host=10.10.10.10:3306,192.101.10.2:3305,localhost:3306;uid=test;password=xxxx; ``` Specifying multiple...