VistaDB ADO.NET Provider

This .NET Framework Class Library is provided by VistaDB Software.
Coding
Add a reference to the assembly 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();


Download link missing
The VistaDB ADO.NET Provider installation package download link is missing. Please provide info and contribute to the community by email to
Connection Strings
The VistaDB ADO.NET Provider class library can be used to connect to the following data sources:

VistaDB
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.