Loading ad...

MySQLDriverCS

This .NET Framework Class Library is provided by MySQLDriverCS project team.
The class library is contained in the file mySQLDriverCS.dll.
Coding
Add a reference to the assembly MySQLDriverCS and include the MySQLDriverCS namespace. Instantiate a new MySQLConnection connection object. Set the connection string and open the connection.


VB.NET code sample
Imports MySQLDriverCS
Dim myConnection As MySQLConnection = New MySQLConnection()
myConnection.ConnectionString = myConnectionString
myConnection.Open()
' execute queries, etc
myConnection.Close()


C# code sample
using MySQLDriverCS;
MySQLConnection myConnection = new MySQLConnection();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
// execute queries, etc
myConnection.Close();


Description
A free simple .NET compliant MySQL driver. Made in C# but it would be used in all .NET compatible languages (VB.NET, Managed C++,...). This project was developed by M.L. Vidas Livschitz in collaboration with CeDEI, Ramon Llull University, Barcelona, Spain.
More info about this class library can be found at the MySQLDriverCS project team product page.
Download
.NET Framework Class Library (MySQLDriverCS) can be downloaded here.
Connection Strings
The MySQLDriverCS class library can be used to connect to the following data sources:

MySQL
To see available connection options, navigate connection strings reference by the above data source links.
Additional info or comments on this class library? Want to submit content?

Popular

Copyright © 2013 30c.org   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.