Ingres .NET Data Provider
This .NET Framework Class Library is provided by Actian Corporation.
Coding
Add a reference to the assembly and include the Ingres.Client namespace. Instantiate a new IngresConnection connection object. Set the connection string and open the connection.
VB.NET code sample
C# code sample
VB.NET code sample
Imports Ingres.Client
Dim myConnection As IngresConnection = New IngresConnection()
myConnection.ConnectionString = myConnectionString
myConnection.Open()
' execute queries, etc
myConnection.Close()
Dim myConnection As IngresConnection = New IngresConnection()
myConnection.ConnectionString = myConnectionString
myConnection.Open()
' execute queries, etc
myConnection.Close()
C# code sample
using Ingres.Client;
IngresConnection myConnection = new IngresConnection();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
// execute queries, etc
myConnection.Close();
IngresConnection myConnection = new IngresConnection();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
// execute queries, etc
myConnection.Close();
Description
The Ingres .NET Data Provider driver enables .NET-enabled applications to access Ingres, Enterprise Access and EDBC databases.
Download
.NET Framework Class Library (Ingres .NET Data Provider) can be downloaded here.
Connection Strings
Additional info or comments on this class library? Want to submit content?