Developers community number 1 connection string reference

MySQLDriverCS

This is a .NET Framework Class Library 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.
Connection Strings
The MySQLDriverCS class library can be used to connect to the following data sources.

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

Send an e-mail to
Copyright © 2010 ConnectionStrings.com   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.