MySql.Data
9.0.0
Prefix Reserved
See the version list below for details.
dotnet add package MySql.Data --version 9.0.0
NuGet\Install-Package MySql.Data -Version 9.0.0
<PackageReference Include="MySql.Data" Version="9.0.0" />
paket add MySql.Data --version 9.0.0
#r "nuget: MySql.Data, 9.0.0"
// Install MySql.Data as a Cake Addin #addin nuget:?package=MySql.Data&version=9.0.0 // Install MySql.Data as a Cake Tool #tool nuget:?package=MySql.Data&version=9.0.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 6.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
Contributing
There are a few ways to contribute to the Connector/NET code. Please refer to the contributing guidelines for additional information.
Additional Resources
- MySQL
- MySQL Connector/NET GitHub
- MySQL Connector/NET API
- MySQL Connector/NET Discussion Forum
- MySQL Public Bug Tracker
#connectors
channel in MySQL Community Slack (Sign-up required when not using an Oracle account)- 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 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. |
.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.3.1)
- Google.Protobuf (>= 3.26.1)
- 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.0)
-
.NETFramework 4.8
- BouncyCastle.Cryptography (>= 2.3.1)
- Google.Protobuf (>= 3.26.1)
- 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.0)
-
.NETStandard 2.0
- BouncyCastle.Cryptography (>= 2.3.1)
- Google.Protobuf (>= 3.26.1)
- 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 (>= 8.0.3)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.0)
-
.NETStandard 2.1
- BouncyCastle.Cryptography (>= 2.3.1)
- Google.Protobuf (>= 3.26.1)
- 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 (>= 8.0.3)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.0)
-
net6.0
- BouncyCastle.Cryptography (>= 2.3.1)
- Google.Protobuf (>= 3.26.1)
- 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 (>= 8.0.3)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.0)
-
net8.0
- BouncyCastle.Cryptography (>= 2.3.1)
- Google.Protobuf (>= 3.26.1)
- 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 (>= 8.0.3)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- ZstdSharp.Port (>= 0.8.0)
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 |
|
linq2db.MySql
LINQ to MySql is a data access technology that provides a run-time infrastructure for managing relational data as objects. Install this package only if you want to use database model scaffolding using T4 templates (requires Visual Studio or Rider), otherwise you should use linq2db package. |
|
MySqlBackup.NET
A tool to backup and restore MySQL database in C#/VB.NET/ASP.NET. |
GitHub repositories (167)
Showing the top 5 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.
|
|
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
|
|
DotNetNext/SqlSugar
.Net aot ORM Fastest ORM 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
|
|
1Remote/1Remote
One Remote Access Manager to Rule Them All
|
Version | Downloads | Last updated |
---|---|---|
9.1.0 | 126,858 | 10/15/2024 |
9.0.0 | 869,475 | 7/1/2024 |
8.4.0 | 919,890 | 4/30/2024 |
8.3.0 | 1,671,953 | 1/16/2024 |
8.2.0 | 1,201,688 | 10/25/2023 |
8.1.0 | 1,630,295 | 7/18/2023 |
8.0.33 | 2,152,383 | 4/18/2023 |
8.0.32.1 | 1,143,482 | 3/8/2023 |
8.0.32 | 2,155,411 | 1/17/2023 |
8.0.31 | 3,420,511 | 10/11/2022 |
8.0.30 | 4,214,357 | 7/26/2022 |
8.0.29 | 4,345,468 | 4/26/2022 |
8.0.28 | 3,035,672 | 1/21/2022 |
8.0.27 | 2,597,264 | 10/19/2021 |
8.0.26 | 2,425,983 | 7/20/2021 |
8.0.25 | 2,222,242 | 5/11/2021 |
8.0.24 | 1,195,332 | 4/20/2021 |
8.0.23 | 2,541,648 | 1/18/2021 |
8.0.22 | 3,734,151 | 10/19/2020 |
8.0.21 | 4,907,872 | 7/13/2020 |
8.0.20 | 3,166,031 | 4/27/2020 |
8.0.19 | 3,331,185 | 1/13/2020 |
8.0.18 | 2,940,321 | 10/14/2019 |
8.0.17 | 2,760,154 | 7/22/2019 |
8.0.16 | 2,892,495 | 4/26/2019 |
8.0.15 | 3,108,199 | 2/1/2019 |
8.0.14 | 870,575 | 1/22/2019 |
8.0.13 | 2,245,201 | 10/22/2018 |
8.0.12 | 2,714,494 | 7/27/2018 |
8.0.11 | 2,041,736 | 4/19/2018 |
6.10.9 | 3,208,746 | 7/29/2019 |
6.10.7 | 1,801,851 | 4/30/2018 |
6.9.12 | 2,816,431 | 5/4/2018 |
6.8.8 | 390,624 | 6/27/2016 |
6.7.9 | 787,569 | 10/14/2015 |
Review ReleaseNotes.txt for details.