Connecting to Progress Database from .Net
When I try to make a dataConnection to Progress database using ODBC and System DSN, it works fine (I can see the tables and data) but if I hit the Test Connection it gives me an error
Error [HY000][DataDirect][ODBC PROGRESS driver] Insufficient information to connect to the data source.
Same thing happens while coding I I use the same connectstring to make a odbc connection
it gives me the foll 2 errors:
Error [HY000][DataDirect][ODBC PROGRESS driver] Insufficient information to connect to the data source.
ERROR [01S00][DataDirect][ODBC PROGRESS driver] Invalid attribute in connection string:server
code is :
Dim sConnstringAsString ="DRIVER={DataDirect 4.1 32-bit Progress SQL92 v9.1D};host name=serv2;user id=dba; password=; port number=test_support;database=support;"
sConnstring =
"DRIVER={DataDirect 4.1 32-bit Progress SQL92 v9.1D};Dsn=odbc_test_support;host=serv2;port=test_support;db=support;uid=dba"sConnstring =
"DRIVER={DataDirect 4.1 32-bit Progress SQL92 v9.1D};Dsn=odbc_test_support;uid=dba;server=serv2;pwd=;"Dim oConnAs Odbc.OdbcConnectionoConn =New Odbc.OdbcConnection(sconnstring)oConn.Open()
I tried all the above 3 connect strings and still get the error.
thanks.

