VistaDB ADO.NET Provider

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

Add a reference to the assembly VistaDB.4 and include the VistaDB.Provider namespace. Instantiate a new VistaDBConnection connection object. Set the connection string and open the connection.

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

More info about this class library can be found at the VistaDB Software product page.

Download

This .NET Framework Class Library, VistaDB ADO.NET Provider, can be downloaded here.

Connection Strings

The VistaDB ADO.NET Provider class library can be used to connect to the following data sources by using the following connection string references:

VistaDB

Providers