MySqlConnector 2.3.7

About

MySqlConnector is a C# ADO.NET driver for MySQL, MariaDB, Amazon Aurora, Azure Database for MySQL and other MySQL-compatible databases.

More documentation is available at the MySqlConnector website.

How to Use

// set these values correctly for your database server
var builder = new MySqlConnectionStringBuilder
{
	Server = "your-server",
	UserID = "database-user",
	Password = "P@ssw0rd!",
	Database = "database-name",
};

// open a connection asynchronously
using var connection = new MySqlConnection(builder.ConnectionString);
await connection.OpenAsync();

// create a DB command and set the SQL statement with parameters
using var command = connection.CreateCommand();
command.CommandText = @"SELECT * FROM orders WHERE order_id = @OrderId;";
command.Parameters.AddWithValue("@OrderId", orderId);

// execute the command and read the results
using var reader = await command.ExecuteReaderAsync();
while (reader.Read())
{
	var id = reader.GetInt32("order_id");
	var date = reader.GetDateTime("order_date");
	// ...
}

ASP.NET

For ASP.NET, use the MySqlConnector.DependencyInjection package to integrate with dependency injection and logging.

var builder = WebApplication.CreateBuilder(args);

// use AddMySqlDataSource to configure MySqlConnector
builder.Services.AddMySqlDataSource(builder.Configuration.GetConnectionString("Default"));

var app = builder.Build();

// use dependency injection to get a MySqlConnection in minimal APIs or in controllers
app.MapGet("/", async (MySqlConnection connection) =>
{
    // open and use the connection here
    await connection.OpenAsync();
    await using var command = connection.CreateCommand();
    command.CommandText = "SELECT name FROM users LIMIT 1";
    return "Hello World: " + await command.ExecuteScalarAsync();
});

app.Run();

Key Features

  • Full support for async I/O
  • High performance
  • Supports .NET Framework, .NET Core, and .NET 5.0+

Main Types

The main types provided by this library are:

  • MySqlConnection (implementation of DbConnection)
  • MySqlCommand (implementation of DbCommand)
  • MySqlDataReader (implementation of DbDataReader)
  • MySqlBulkCopy
  • MySqlBulkLoader
  • MySqlConnectionStringBuilder
  • MySqlConnectorFactory
  • MySqlDataAdapter
  • MySqlException
  • MySqlTransaction (implementation of DbTransaction)

Feedback

MySqlConnector is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on MySqlConnector.

Packages Downloads
Pomelo.EntityFrameworkCore.MySql
Pomelo's MySQL database provider for Entity Framework Core.
104
Pomelo.EntityFrameworkCore.MySql
Pomelo's MySQL database provider for Entity Framework Core.
4
Pomelo.EntityFrameworkCore.MySql
Pomelo's MySQL database provider for Entity Framework Core.
3
Pomelo.EntityFrameworkCore.MySql
Pomelo.EntityFrameworkCore.MySql
3
Pomelo.EntityFrameworkCore.MySql
MySQL provider for Entity Framework Core
3
Pomelo.EntityFrameworkCore.MySql
Package Description
3

https://mysqlconnector.net/overview/version-history/

Version Downloads Last updated
2.3.7 2 04/26/2024
2.3.6 2 04/25/2024
2.3.5 104 03/26/2024
2.3.4 1 04/29/2024
2.3.3 1 04/29/2024
2.3.2 1 04/29/2024
2.3.1 1 04/29/2024
2.3.0 1 04/29/2024
2.2.7 3 04/05/2024
2.2.6 1 04/29/2024
2.2.5 1 04/29/2024
2.2.4 1 04/29/2024
2.2.3 3 04/26/2024
2.2.2 1 04/29/2024
2.2.1 1 04/29/2024
2.2.0 1 04/29/2024
2.1.13 1 04/29/2024
2.1.12 1 04/29/2024
2.1.11 1 04/29/2024
2.1.10 2 04/27/2024
2.1.9 1 04/29/2024
2.1.8 1 04/29/2024
2.1.7 1 04/29/2024
2.1.6 1 04/29/2024
2.1.5 1 04/03/2024
2.1.4 1 04/29/2024
2.1.3 1 04/29/2024
2.1.2 1 04/29/2024
2.1.1 1 04/29/2024
2.1.0 1 04/29/2024
2.0.0 3 03/30/2024
1.3.14 1 04/29/2024
1.3.13 1 04/29/2024
1.3.12 1 04/29/2024
1.3.11 2 03/31/2024
1.3.10 2 04/14/2024
1.3.9 2 04/27/2024
1.3.8 2 04/29/2024
1.3.7 2 04/19/2024
1.3.6 2 04/01/2024
1.3.5 2 04/01/2024
1.3.4 1 04/29/2024
1.3.3 1 04/29/2024
1.3.2 2 04/16/2024
1.3.1 1 04/29/2024
1.3.0 1 04/29/2024
1.2.1 1 04/29/2024
1.2.0 1 04/29/2024
1.1.0 2 04/03/2024
1.0.1 1 04/29/2024
1.0.0 1 04/29/2024
0.69.10 1 04/29/2024
0.69.9 1 04/29/2024
0.69.8 2 03/31/2024
0.69.7 2 04/07/2024
0.69.6 1 04/29/2024
0.69.5 1 04/29/2024
0.69.4 1 04/29/2024
0.69.3 1 04/29/2024
0.69.2 1 04/29/2024
0.69.1 2 04/25/2024
0.69.0 1 04/29/2024
0.68.1 1 04/29/2024
0.68.0 1 04/29/2024
0.67.0 1 04/29/2024
0.66.0 1 04/29/2024
0.65.0 1 04/29/2024
0.64.2 1 04/29/2024
0.64.1 1 04/29/2024
0.64.0 3 04/07/2024
0.63.2 2 04/05/2024
0.63.1 1 04/29/2024
0.63.0 1 04/29/2024
0.62.0 1 04/29/2024
0.61.0 1 04/29/2024
0.60.4 3 04/08/2024
0.60.3 2 04/05/2024
0.60.2 1 04/05/2024
0.60.1 1 04/29/2024
0.60.0 1 03/31/2024
0.59.2 2 04/01/2024
0.59.1 1 04/29/2024
0.59.0 1 04/29/2024
0.58.0 1 04/29/2024
0.57.0 3 04/04/2024
0.56.0 1 04/29/2024
0.55.0 1 04/29/2024
0.54.0 2 04/06/2024
0.53.0 1 04/29/2024
0.52.0 1 04/29/2024
0.51.1 2 04/01/2024
0.51.0 1 04/29/2024
0.50.0 2 03/29/2024
0.49.3 1 04/29/2024
0.49.2 1 04/29/2024
0.49.0 1 04/29/2024
0.48.2 1 04/29/2024
0.48.1 1 04/29/2024
0.48.0 1 04/29/2024
0.47.1 1 04/29/2024
0.47.0 2 03/30/2024
0.46.2 1 04/29/2024
0.46.1 1 04/29/2024
0.46.0 1 04/29/2024
0.45.1 2 04/05/2024
0.45.0 2 03/31/2024
0.44.1 2 04/03/2024
0.44.0 2 04/03/2024
0.43.0 1 04/29/2024
0.42.3 1 04/29/2024
0.42.2 2 04/02/2024
0.42.1 1 04/29/2024
0.42.0 1 04/29/2024
0.41.0 1 04/29/2024
0.40.4 1 04/29/2024
0.40.3 2 04/02/2024
0.40.2 0 04/19/2018
0.36.0 1 04/29/2024
0.35.0 1 04/29/2024
0.32.0 1 04/29/2024
0.30.0 1 04/29/2024
0.29.4 2 04/01/2024
0.29.2 2 04/01/2024
0.26.5 1 04/29/2024
0.26.4 1 04/29/2024
0.26.3 1 04/29/2024
0.26.2 2 04/29/2024
0.26.1 2 04/28/2024
0.26.0 1 04/29/2024
0.25.1 2 04/05/2024
0.25.0 1 04/29/2024
0.20.0 1 04/29/2024
0.19.5 2 04/11/2024
0.19.4 2 04/02/2024
0.19.3 1 04/29/2024
0.19.2 2 03/30/2024
0.16.2 1 04/29/2024
0.10.0 1 04/29/2024
0.9.0 1 04/29/2024
0.8.0 1 04/29/2024
0.7.4 1 04/29/2024
0.7.3 1 04/29/2024
0.7.2 1 04/29/2024
0.7.1 1 04/29/2024
0.7.0 1 04/29/2024
0.6.2 1 04/29/2024
0.6.1 1 04/29/2024
0.6.0 1 04/29/2024
0.5.0 1 04/29/2024
0.4.0 1 04/29/2024
0.3.0 2 04/04/2024
0.2.1 1 04/29/2024
0.2.0 1 04/29/2024
0.1.0 2 04/29/2024