How to connect C# with Progress OpenEdge 10.1B driver ?

  • Thread starter progresscommunities@progr
  • Start date
Status
Not open for further replies.
P

progresscommunities@progr

Guest
Hi Guys, i was trying to connect C# with Progress OpenEdge 10.1B driver by ODBC. Apparently my connection string is ok, but when i try to connect i get the following error message:

ERROR [HYC00] [DataDirect][ODBC Progress OpenEdge Wire Protocol driver]Optional feature not implemented.
ERROR [HY000] [DataDirect][ODBC Progress OpenEdge Wire Protocol driver][OPENEDGE]Server rejects connection on attach.
ERROR [IM006] [DataDirect][ODBC Progress OpenEdge Wire Protocol driver]Driver's SQLSetConnectAttr failed.





this is my source code:



try

{

con = new OdbcConnection("Driver={Progress OpenEdge 10.1B driver}; HOST=10.1.75.250; PORT=2950; DB=IveaPruebas; DefaultIsolationLevel=READ COMMITTED; UID=sysprogress; PWD=sys;");



con.Open();

MessageBox.Show("Successfull!");

}

catch (Exception e)

{

MessageBox.Show("Error: " + e);

}


I hope you can help us.

Thanks in advance

Continue reading...
 
Status
Not open for further replies.
Top