MySqlConnector 2.4.0

Prefix Reserved
dotnet add package MySqlConnector --version 2.4.0
                    
NuGet\Install-Package MySqlConnector -Version 2.4.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MySqlConnector" Version="2.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MySqlConnector" Version="2.4.0" />
                    
Directory.Packages.props
<PackageReference Include="MySqlConnector" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MySqlConnector --version 2.4.0
                    
#r "nuget: MySqlConnector, 2.4.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=MySqlConnector&version=2.4.0
                    
Install MySqlConnector as a Cake Addin
#tool nuget:?package=MySqlConnector&version=2.4.0
                    
Install MySqlConnector as a Cake Tool

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.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 is compatible.  net472 was computed.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (639)

Showing the top 5 NuGet packages that depend on MySqlConnector:

Package Downloads
Pomelo.EntityFrameworkCore.MySql

Pomelo's MySQL database provider for Entity Framework Core.

SqlSugarCore

.Net Core3.1 .Net5 .Net6 .Net7 .Net8 安装此版本,好用的ORM框架 ,支持国外主流和国产人大金仓达梦 OceanBase GaussDB QuestDb ClickHouse Oracle MySql Gbase8s SqlServer Sqlite 等, 使用教程:https://www.donet5.com/Home/Doc?typeId=1226

DistributedLock

Provides easy-to-use mutexes, reader-writer locks, and semaphores that can synchronize across processes and machines. This is an umbrella package that brings in the entire family of DistributedLock.* packages (e. g. DistributedLock.SqlServer) as references. Those packages can also be installed individually.

AspNetCore.HealthChecks.MySql

HealthChecks.MySql is the health check package for MySQL.

Hangfire.MySqlStorage

Hangfire MySql Storage

GitHub repositories (127)

Showing the top 20 popular GitHub repositories that depend on MySqlConnector:

Repository Stars
dotnet/aspnetcore
ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
DapperLib/Dapper
Dapper - a simple object mapper for .Net
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
dotnetcore/CAP
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern
quartznet/quartznet
Quartz Enterprise Scheduler .NET
aspnet/Mvc
[Archived] ASP.NET Core MVC is a model view controller framework for building dynamic web sites with clean separation of concerns, including the merged MVC, Web API, and Web Pages w/ Razor. Project moved to https://github.com/aspnet/AspNetCore
DotNetNext/SqlSugar
.Net aot ORM Fastest ORM DB2 Hana Simple Easy VB.NET Sqlite orm Oracle ORM Mysql Orm 虚谷数据库 postgresql ORm SqlServer oRm 达梦 ORM 人大金仓 ORM 神通ORM C# ORM , C# ORM .NET ORM NET5 ORM .NET6 ORM ClickHouse orm QuestDb ,TDengine ORM,OceanBase orm,GaussDB orm ,Tidb orm Object/Relational Mapping
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
TechnitiumSoftware/DnsServer
Technitium DNS Server
dotnetcore/Util
Util是一个.Net平台下的应用框架,旨在提升中小团队的开发能力,由工具类、分层架构基类、Ui组件,配套代码生成模板,权限等组成。
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
dotnetcore/FreeSql
.NET aot orm, VB.NET/C# orm, Mysql/PostgreSQL/SqlServer/Oracle orm, Sqlite/Firebird/Clickhouse/DuckDB orm, 达梦/金仓/虚谷/翰高/高斯 orm, 神通 orm, 南大通用 orm, 国产 orm, TDengine orm, QuestDB orm, MsAccess orm.
dotnetcore/DotnetSpider
DotnetSpider, a .NET standard web crawling library. It is lightweight, efficient and fast high-level web crawling & scraping framework
testcontainers/testcontainers-dotnet
A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.
ravendb/ravendb
ACID Document Database
fluentmigrator/fluentmigrator
Fluent migrations framework for .NET
linq2db/linq2db
Linq to database provider.
MiniProfiler/dotnet
A simple but effective mini-profiler for ASP.NET (and Core) websites
PomeloFoundation/Pomelo.EntityFrameworkCore.MySql
Entity Framework Core provider for MySQL and MariaDB built on top of MySqlConnector
GavinYellow/SharpSCADA
C# SCADA
Version Downloads Last updated
2.4.0 1,647,779 5 months ago
2.4.0-beta.2 2,736 6 months ago
2.4.0-beta.1 1,178 6 months ago
2.3.7 3,731,359 4/22/2024
2.3.6 521,908 3/20/2024
2.3.5 13,274,361 1/20/2024
2.3.4 262,240 1/14/2024
2.3.3 323,246 12/19/2023
2.3.2 12,466 12/18/2023
2.3.1 2,163,865 11/17/2023
2.3.0 181,809 11/14/2023
2.2.7 2,630,569 7/21/2023
2.2.6 1,750,030 5/4/2023
2.2.5 16,450,393 1/1/2023
2.2.4 109,838 12/23/2022
2.2.3 676,120 12/18/2022
2.2.2 736,225 12/6/2022
2.2.1 467,134 11/21/2022
2.2.0 863,343 11/8/2022
2.1.13 1,977,374 8/26/2022
2.1.12 164,620 8/12/2022
2.1.11 537,362 7/14/2022
2.1.10 1,965,491 6/4/2022
2.1.9 269,185 5/16/2022
2.1.8 1,188,516 3/7/2022
2.1.7 312,743 2/20/2022
2.1.6 89,427 2/10/2022
2.1.5 266,109 1/30/2022
2.1.4 112,785 1/25/2022
2.1.3 8,596 1/25/2022 2.1.3 is deprecated because it has critical bugs.
2.1.2 21,753,129 12/23/2021
2.1.1 11,157 12/21/2021
2.1.0 1,505,768 11/28/2021
2.0.0 6,041,230 11/9/2021
1.3.14 1,201,567 10/20/2021
1.3.13 3,356,005 10/2/2021
1.3.12 284,499 9/11/2021
1.3.11 2,671,138 7/2/2021
1.3.10 2,587,177 6/16/2021
1.3.9 608,141 5/27/2021 1.3.9 is deprecated because it has critical bugs.
1.3.8 395,071 4/30/2021 1.3.8 is deprecated because it has critical bugs.
1.3.7 2,000,345 4/24/2021 1.3.7 is deprecated because it has critical bugs.
1.3.6 4,025 4/24/2021 1.3.6 is deprecated because it has critical bugs.
1.3.5 8,874 4/23/2021 1.3.5 is deprecated because it has critical bugs.
1.3.4 134,459 4/21/2021 1.3.4 is deprecated because it has critical bugs.
1.3.3 156,750 4/12/2021 1.3.3 is deprecated because it has critical bugs.
1.3.2 741,123 3/22/2021 1.3.2 is deprecated because it has critical bugs.
1.3.1 191,337 3/11/2021 1.3.1 is deprecated because it has critical bugs.
1.3.0 215,430 3/7/2021 1.3.0 is deprecated because it has critical bugs.
1.2.1 1,265,455 12/12/2020
1.2.0 394,782 11/26/2020
1.1.0 2,739,197 11/10/2020
1.0.1 2,250,491 8/13/2020
1.0.0 2,797,987 7/11/2020
0.69.10 2,384,252 10/21/2020
0.69.9 4,197,777 8/20/2020
0.69.8 131,525 7/20/2020
0.69.7 8,034 7/16/2020
0.69.6 146,062 7/7/2020
0.69.5 83,692 7/1/2020
0.69.4 34,828 6/25/2020
0.69.3 192,604 6/16/2020
0.69.2 20,506 6/12/2020
0.69.1 10,036 6/10/2020
0.69.0 20,631 6/8/2020
0.68.1 6,638 6/8/2020
0.68.0 4,656 6/6/2020
0.67.0 69,994 5/30/2020
0.66.0 377,636 5/7/2020
0.65.0 30,953 5/3/2020
0.64.2 35,626 4/28/2020
0.64.1 30,769 4/26/2020
0.64.0 53,435 4/18/2020
0.63.2 254,713 4/9/2020
0.63.1 321,191 4/4/2020
0.63.0 49,774 3/26/2020
0.62.0 376,770 2/29/2020
0.61.0 8,037,556 11/5/2019
0.60.4 18,169 11/4/2019
0.60.3 379,496 10/28/2019
0.60.2 202,794 10/21/2019
0.60.1 7,542 10/20/2019
0.60.0 16,924 10/19/2019
0.59.2 1,831,264 10/4/2019
0.59.1 17,758 9/30/2019
0.59.0 31,489 9/25/2019
0.58.0 63,967 9/24/2019
0.57.0 8,744 9/23/2019
0.56.0 2,473,356 5/26/2019
0.55.0 36,495 5/24/2019
0.54.0 71,507 5/11/2019
0.53.0 174,696 4/19/2019
0.52.0 154,988 4/11/2019
0.51.1 126,009 3/27/2019
0.51.0 9,193 3/27/2019
0.50.0 45,391 3/18/2019
0.49.3 201,760 1/24/2019
0.49.2 4,702,817 1/16/2019
0.49.0 9,346 1/12/2019
0.48.2 132,177 12/12/2018
0.48.1 9,567 12/10/2018
0.48.0 19,915 12/8/2018
0.47.1 3,337,678 11/4/2018
0.47.0 6,213 11/3/2018
0.46.2 18,719 10/25/2018
0.46.1 108,734 10/16/2018
0.46.0 13,798 10/12/2018
0.45.1 867,423 9/29/2018
0.45.0 34,067 9/13/2018
0.44.1 1,309,881 8/24/2018
0.44.0 10,382 8/21/2018
0.43.0 126,212 7/27/2018
0.42.3 50,873 7/6/2018
0.42.2 92,346 6/30/2018
0.42.1 1,005,659 6/16/2018
0.42.0 19,739 6/9/2018
0.41.0 6,598 6/8/2018
0.40.4 906,612 5/19/2018
0.40.3 71,445 4/26/2018
0.40.2 26,532 4/19/2018
0.36.0 50,722 2/16/2018
0.35.0 76,529 1/21/2018
0.32.0 1,018,325 11/24/2017
0.30.0 97,385 10/31/2017
0.29.4 27,427 10/31/2017
0.29.2 68,566 10/26/2017
0.26.5 34,328 9/22/2017
0.26.4 356,626 9/13/2017
0.26.3 5,432 9/13/2017
0.26.2 53,217 9/7/2017
0.26.1 30,408 9/3/2017
0.26.0 38,586 8/25/2017
0.25.1 102,445 8/17/2017
0.25.0 35,211 8/13/2017
0.20.0 6,896 6/1/2017
0.19.5 16,428 5/26/2017
0.19.4 6,965 5/13/2017
0.19.3 6,059 5/11/2017
0.19.2 2,794,724 5/1/2017
0.16.2 30,692 4/2/2017
0.10.0 14,115 12/29/2016
0.9.0 7,444 12/13/2016
0.8.0 8,446 12/7/2016
0.7.4 6,307 12/7/2016
0.7.3 63,608 11/28/2016
0.7.2 18,174 11/23/2016
0.7.1 10,834 11/21/2016
0.7.0 9,134 11/13/2016
0.6.2 28,440 10/28/2016
0.6.1 6,787 10/27/2016
0.6.0 6,380 10/23/2016
0.5.0 6,923 10/20/2016
0.4.0 7,951 10/13/2016
0.3.0 6,494 10/12/2016
0.2.1 6,215 10/10/2016
0.2.0 6,314 10/9/2016
0.1.0 23,331 10/4/2016