MySql.Data
9.3.0
Prefix Reserved
dotnet add package MySql.Data --version 9.3.0
NuGet\Install-Package MySql.Data -Version 9.3.0
<PackageReference Include="MySql.Data" Version="9.3.0" />
<PackageVersion Include="MySql.Data" Version="9.3.0" />
<PackageReference Include="MySql.Data" />
paket add MySql.Data --version 9.3.0
#r "nuget: MySql.Data, 9.3.0"
#addin nuget:?package=MySql.Data&version=9.3.0
#tool nuget:?package=MySql.Data&version=9.3.0
About
MySQL provides connectivity for client applications developed in .NET compatible programming languages with MySQL Connector/NET through a series of packages.
MySql.Data is the core package of Connector/NET. It is compatible with .NET Framework 4.6+ and .NET 8.0+ and provides classic MySQL protocol and MySQL X DevAPI capabilities.
More information at MySQL Connector/NET documentation.
How to use
MySql.Data.MySqlClient.MySqlConnection myConnection;
string myConnectionString;
//set the correct values for your server, user, password and database name
myConnectionString = "server=127.0.0.1;uid=root;pwd=12345;database=test";
try
{
myConnection = new MySql.Data.MySqlClient.MySqlConnection(myConnectionString);
//open a connection
myConnection.Open();
// create a MySQL command and set the SQL statement with parameters
MySqlCommand myCommand = new MySqlCommand();
myCommand.Connection = myConnection;
myCommand.CommandText = @"SELECT * FROM clients WHERE client_id = @clientId;";
myCommand.Parameters.AddWithValue("@clientId", clientId);
// execute the command and read the results
using var myReader = myCommand.ExecuteReader()
{
while (myReader.Read())
{
var id = myReader.GetInt32("client_id");
var name = myReader.GetString("client_name");
// ...
}
}
myConnection.Close();
}
catch (MySql.Data.MySqlClient.MySqlException ex)
{
MessageBox.Show(ex.Message);
}
Related Packages
- Entity Framework Core: MySql.EntityFrameworkCore
- Entity Framework: MySql.Data.EntityFramework
- Web: MySql.Web
- OpenTelemetry: MySql.Data.OpenTelemetry
Licensing
Please refer to files README and LICENSE, available in the Connector/NET GitHub repository, and Legal Notices in documentation for further details.
Security
Oracle values the independent security research community and believes that responsible disclosure of security vulnerabilities helps us ensure the security and privacy of all our users. Please refer to the security guidelines document for additional information.
Contributing
We greatly appreciate feedback from our users, including bug reports and code contributions. Your input helps us improve, and we thank you for any issues you report or code you contribute. Please refer to the contributing guidelines document for additional information.
Additional Resources
- MySQL Connector/NET GitHub
- MySQL Connector/NET Developer Guide
- MySQL Connector/NET API
- MySQL NuGet
- MySQL Connector/NET and C#, Mono, .Net Forum
#connectors
channel on MySQL Community Slack (Sign-up required if you do not have an Oracle account.)- @MySQL on X.
- MySQL Blog.
- MySQL Connectors Blog archive.
- MySQL Newsletter.
- MySQL Bugs Tracking System.
For more information about this and other MySQL products, please visit MySQL Contact & Questions.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. |
-
.NETFramework 4.6.2
- BouncyCastle.Cryptography (>= 2.5.1)
- Google.Protobuf (>= 3.30.0)
- K4os.Compression.LZ4.Streams (>= 1.3.8)
- System.Buffers (>= 4.5.1)
- System.Configuration.ConfigurationManager (>= 8.0.0)
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.5)
-
.NETFramework 4.8
- BouncyCastle.Cryptography (>= 2.5.1)
- Google.Protobuf (>= 3.30.0)
- K4os.Compression.LZ4.Streams (>= 1.3.8)
- System.Buffers (>= 4.5.1)
- System.Configuration.ConfigurationManager (>= 8.0.0)
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.5)
-
.NETStandard 2.0
- BouncyCastle.Cryptography (>= 2.5.1)
- Google.Protobuf (>= 3.30.0)
- K4os.Compression.LZ4.Streams (>= 1.3.8)
- System.Buffers (>= 4.5.1)
- System.Configuration.ConfigurationManager (>= 8.0.0)
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Runtime.Loader (>= 4.3.0)
- System.Security.Permissions (>= 8.0.0)
- System.Text.Encoding.CodePages (>= 8.0.0)
- System.Text.Json (>= 9.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.5)
-
.NETStandard 2.1
- BouncyCastle.Cryptography (>= 2.5.1)
- Google.Protobuf (>= 3.30.0)
- K4os.Compression.LZ4.Streams (>= 1.3.8)
- System.Buffers (>= 4.5.1)
- System.Configuration.ConfigurationManager (>= 8.0.0)
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Runtime.Loader (>= 4.3.0)
- System.Security.Permissions (>= 8.0.0)
- System.Text.Encoding.CodePages (>= 8.0.0)
- System.Text.Json (>= 9.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.5)
-
net8.0
- BouncyCastle.Cryptography (>= 2.5.1)
- Google.Protobuf (>= 3.30.0)
- K4os.Compression.LZ4.Streams (>= 1.3.8)
- System.Buffers (>= 4.5.1)
- System.Configuration.ConfigurationManager (>= 8.0.0)
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Runtime.Loader (>= 4.3.0)
- System.Security.Permissions (>= 8.0.0)
- System.Text.Encoding.CodePages (>= 8.0.0)
- System.Text.Json (>= 9.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.5)
-
net9.0
- BouncyCastle.Cryptography (>= 2.5.1)
- Google.Protobuf (>= 3.30.0)
- K4os.Compression.LZ4.Streams (>= 1.3.8)
- System.Buffers (>= 4.5.1)
- System.Configuration.ConfigurationManager (>= 8.0.0)
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Runtime.Loader (>= 4.3.0)
- System.Security.Permissions (>= 8.0.0)
- System.Text.Encoding.CodePages (>= 8.0.0)
- System.Text.Json (>= 9.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.5)
NuGet packages (1.8K)
Showing the top 5 NuGet packages that depend on MySql.Data:
Package | Downloads |
---|---|
MySql.EntityFrameworkCore
MySql.EntityFrameworkCore adds support for Microsoft Entity Framework Core. |
|
MySql.Data.EntityFrameworkCore
MySql.Data.EntityFrameworkCore for Entity Framework. |
|
MySql.Data.EntityFramework
MySql.Data.EntityFramework |
|
JoreNoe
Redis和Dapper增加多连接方式,并且优化性能 |
|
OpenTelemetry.Instrumentation.MySqlData
OpenTelemetry instrumentation for MySql.Data |
GitHub repositories (173)
Showing the top 20 popular GitHub repositories that depend on MySql.Data:
Repository | Stars |
---|---|
dotnet/orleans
Cloud Native application framework for .NET
|
|
mRemoteNG/mRemoteNG
mRemoteNG is the next generation of mRemote, open source, tabbed, multi-protocol, remote connections manager.
|
|
elsa-workflows/elsa-core
A .NET workflows library
|
|
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
|
|
1Remote/1Remote
One Remote Access Manager to Rule Them All
|
|
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.
|
|
fluentmigrator/fluentmigrator
Fluent migrations framework for .NET
|
|
sqlkata/querybuilder
SQL query builder, written in c#, helps you build complex queries easily, supports SqlServer, MySql, PostgreSql, Oracle, Sqlite and Firebird
|
|
linq2db/linq2db
Linq to database provider.
|
|
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
|
|
jbogard/Respawn
Intelligent database cleaner for integration tests
|
|
GavinYellow/SharpSCADA
C# SCADA
|
|
SciSharp/BotSharp
AI Multi-Agent Framework in .NET
|
|
hitchao/Jvedio
Jvedio 是本地视频管理软件,支持扫描本地视频并导入软件,建立视频库, 提取出视频的 唯一识别码,自动分类视频, 添加标签管理视频,使用人工智能识别演员,支持翻译信息, 基于 FFmpeg 截取视频图片,Window 桌面端流畅美观的应用软件
|
|
Pryaxis/TShock
☕️⚡️TShock provides Terraria servers with server-side characters, anti-cheat, and community management tools.
|
|
OrchardCMS/Orchard
Orchard is a free, open source, community-focused Content Management System built on the ASP.NET MVC platform.
|
|
nhibernate/nhibernate-core
NHibernate Object Relational Mapper
|
|
CollaboratingPlatypus/PetaPoco
Official PetaPoco, A tiny ORM-ish thing for your POCO's
|
|
oqtane/oqtane.framework
CMS & Application Framework for Blazor & .NET MAUI
|
Version | Downloads | Last updated |
---|---|---|
9.3.0 | 41,450 | 4/15/2025 |
9.2.0 | 666,545 | 1/21/2025 |
9.1.0 | 1,385,507 | 10/15/2024 |
9.0.0 | 1,913,190 | 7/1/2024 |
8.4.0 | 1,617,090 | 4/30/2024 |
8.3.0 | 2,267,310 | 1/16/2024 |
8.2.0 | 1,527,463 | 10/25/2023 |
8.1.0 | 2,076,446 | 7/18/2023 |
8.0.33 | 2,627,832 | 4/18/2023 |
8.0.32.1 | 1,358,939 | 3/8/2023 |
8.0.32 | 3,098,229 | 1/17/2023 |
8.0.31 | 3,949,974 | 10/11/2022 |
8.0.30 | 4,891,128 | 7/26/2022 |
8.0.29 | 4,656,542 | 4/26/2022 |
8.0.28 | 3,481,077 | 1/21/2022 |
8.0.27 | 2,717,876 | 10/19/2021 |
8.0.26 | 2,516,934 | 7/20/2021 |
8.0.25 | 2,307,051 | 5/11/2021 |
8.0.24 | 1,218,279 | 4/20/2021 |
8.0.23 | 2,651,765 | 1/18/2021 |
8.0.22 | 4,049,511 | 10/19/2020 |
8.0.21 | 5,040,078 | 7/13/2020 |
8.0.20 | 3,297,223 | 4/27/2020 |
8.0.19 | 3,441,258 | 1/13/2020 |
8.0.18 | 3,031,657 | 10/14/2019 |
8.0.17 | 2,801,217 | 7/22/2019 |
8.0.16 | 2,962,923 | 4/26/2019 |
8.0.15 | 3,194,286 | 2/1/2019 |
8.0.14 | 892,118 | 1/22/2019 |
8.0.13 | 2,321,398 | 10/22/2018 |
8.0.12 | 2,788,516 | 7/27/2018 |
8.0.11 | 2,085,221 | 4/19/2018 |
6.10.9 | 3,670,411 | 7/29/2019 |
6.10.7 | 2,258,953 | 4/30/2018 |
6.9.12 | 2,972,951 | 5/4/2018 |
6.8.8 | 404,061 | 6/27/2016 |
6.7.9 | 869,328 | 10/14/2015 |
Review ReleaseNotes.txt for details.