If you have created a DSN, then the DSN is the ConnectionString !
You can simply use DSN=<YourDSNName> and pass it to an OdbcConnection object.
For instance, using C#:
string dsnName = "MyDSN";
DSN=MyDSN";
using (OdbcConnection conn = new OdbcConnection(dsnName))
{
conn.Open();
}
Alternatively, you can use the OdbcConnectionStringBuilder class and set its DSN property.
