MySqlConnector icon indicating copy to clipboard operation
MySqlConnector copied to clipboard

MySQL Connector for .NET

Results 148 MySqlConnector issues
Sort by recently updated
recently updated
newest added
trafficstars

When used multiple joins to the same table there no way to find out which alias current column belongs to. `SELECT * FROM Orders o LEFT JOIN Users u1 ON...

**Software versions** MySqlConnector version: 2.3.7 Server type (MySQL, MariaDB, Aurora, etc.) and version: Mysql 8.0 .NET version: 6.0 **Describe the bug** I can't tell if this is a bug or...

A new feature in MySQL Server Enterprise Edition 9.1 is [OpenID Connect Pluggable Authentication](https://dev.mysql.com/doc/refman/9.1/en/openid-pluggable-authentication.html). On the client side, this seems to be supported via a new `OpenidIdentityToken` connection option: https://dev.mysql.com/doc/relnotes/connector-net/en/news-9-1-0.html

enhancement
low priority

In layer 4 load-balanced MySQL environments, `MySqlCommand.Cancel` could potentially cancel queries on the wrong server if connection IDs are reused across different MySQL servers. The original implementation only used IP...

`MySqlCommand.Cancel` attempts to ensure that `KILL QUERY` runs on the correct server by connecting directly to its IP address: https://github.com/mysql-net/MySqlConnector/blob/4cbcfc72063a74c02003a781174f9393660fe731/src/MySqlConnector/MySqlConnection.cs#L913-L921 In a layer 4 load balancing scenario, this might not...

enhancement

**Software versions** MySqlConnector version: 2.2.7 Server type (MySQL, MariaDB, Aurora, etc.) and version: mariaDB 11.4 .NET version: 4.7.2 (Optional) ORM NuGet packages and versions: **Describe the bug** In the MariaDB...

**Is your feature request related to a problem? Please describe.** When Allow User Variables=False, [MySql.Data can use @` to ignore missing variables.](https://github.com/mysql/mysql-connector-net/blob/e06e563add3ad67c9288bb3abd93ea9f9a10d9c9/MySQL.Data/src/Statement.cs#L314) For example ```C# var connectionString = "Server=127.0.0.1;User ID=root;Password=123456;Database=test;Allow...

enhancement

**Is your feature request related to a problem? Please describe.** I sometimes work on applications that need metadata of tables and columns. I use queries on `information_schema` to get this...

enhancement

**Is your feature request related to a problem? Please describe.** I'm running MySqlConnector 2.4.0 against Aurora MySQL. I have a database cluster with multiple databases. Some queries span multiple databases....

**Software versions** MySqlConnector version: 2.40 Server type (MySQL, MariaDB, Aurora, etc.) and version: MySQL 8.0.31.0 .NET version: 9 (Optional) ORM NuGet packages and versions: 2.40 **Describe the bug** When using...