I have the following code, in an ASP.NET app, to setup a connection in
code.
string connectionStrin g =
"DSN=Interbase; UID=SYSDBA;DB=C :\\Data\\MEMDAT A.GDB;";
SqlConnection con = new SqlConnection(c onnectionString );
When I try to run the app I get the following error message
System.Argument Exception: Keyword not supported: 'dsn'.
How can I get an ODBC connection, to work with the code above?
TIA
code.
string connectionStrin g =
"DSN=Interbase; UID=SYSDBA;DB=C :\\Data\\MEMDAT A.GDB;";
SqlConnection con = new SqlConnection(c onnectionString );
When I try to run the app I get the following error message
System.Argument Exception: Keyword not supported: 'dsn'.
How can I get an ODBC connection, to work with the code above?
TIA
Comment