eInfoDesigns.dbProvider

This .NET Framework Class Library is provided by eInfoDesigns. The main functionality of the class library is contained in the file dbProvider.dll.

Add a reference to the assembly eInfoDesigns.dbProvider.MySqlClient and include the eInfoDesigns.dbProvider.MySqlClient namespace. Instantiate a new MySqlConnection connection object. Set the connection string and open the connection.

VB.NET code sample
Imports eInfoDesigns.dbProvider.MySqlClient
Dim myConnection As MySqlConnection = New MySqlConnection()
myConnection.ConnectionString = myConnectionString
myConnection.Open()
' execute queries, etc
myConnection.Close()
C# code sample
using eInfoDesigns.dbProvider.MySqlClient;
MySqlConnection myConnection = new MySqlConnection();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
// execute queries, etc
myConnection.Close();

Description

Another .NET provider that seems to have vanished. Please send an e-mail if you've got any information on eInfoDesigns.

Download

There is no 'eInfoDesigns.dbProvider' installation package to download. (if you know about an installation package URL you can contribute to the community by submitting the info to us through this message form)

Connection Strings

The eInfoDesigns.dbProvider class library can be used to connect to the following data sources by using the following connection string references:

MySQL