IBM Informix .NET Provider
This is a .NET Framework Class Library provided by IBM.
The class library is contained in the file IBM.Data.Informix.dll.
The class library is contained in the file IBM.Data.Informix.dll.
Coding
Add a reference to the assembly IBM.Data.Informix and include the IBM.Data.Informix namespace. Instantiate a new IfxConnection connection object. Set the connection string and open the connection.
VB.NET code sample
C# code sample
VB.NET code sample
Imports IBM.Data.Informix
Dim myConnection As IfxConnection = New IfxConnection;();
myConnection.ConnectionString = myConnectionString
myConnection.Open()
//execute queries, etc
myConnection.Close()
Dim myConnection As IfxConnection = New IfxConnection;();
myConnection.ConnectionString = myConnectionString
myConnection.Open()
//execute queries, etc
myConnection.Close()
C# code sample
using IBM.Data.Informix;
IfxConnection myConnection = new IfxConnection;();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
//execute queries, etc
myConnection.Close();
IfxConnection myConnection = new IfxConnection;();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
//execute queries, etc
myConnection.Close();
More info about this class library can be found at the IBM product page.
Connection Strings
Additional info or comments on this class library? Want to submit content?
Send an e-mail to
Send an e-mail to

Selected Articles
