Loading ad...

Connection strings for Progress

ODBC drivers for Progress

.NET libraries for Progress

Progress ODBC Driver

Type ODBC Driver
Usage
Manufacturer Progress Software

Standard

Include only the parameters you want to override from the system DSN settings

DSN=myDSN;HOST=myServerAddress;DB=myDataBase;UID=myUsername;PWD=myPassword;PORT=2055;
 
 

Alternative using long names

Include only the parameters you want to override from the system DSN settings

DataSourceName=myDSN;HostName=myServerAddress;Database=myDataBase;LogonID=myUsername;
Password=myPassword;PortNumber=2055;
 
 

.NET Framework Data Provider for ODBC

Type .NET Framework Wrapper Class Library
Usage System.Data.Odbc.OdbcConnection
Manufacturer Microsoft

Use an ODBC driver from .NET

Driver={any odbc driver's name};OdbcKey1=someValue;OdbcKey2=someValue;

See the respective ODBC driver's connection strings options. The .net OdbcConnection will just pass on the connection string to the specified ODBC driver. Read more here.

 
 

Popular