Developers community number 1 connection string reference

eInfoDesigns.dbProvider

This is a .NET Framework Class Library provided by eInfoDesigns.
The class library is contained in the file dbProvider.dll.
Coding
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.
Connection Strings
The eInfoDesigns.dbProvider 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.
MySQL
Additional info or comments on this class library? Want to submit content?

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