Hello,
I'm working on an application where I want the user to be able to select a ODBC data source. How can I bring up the "Select Data Source" window? It looks similar to the ODBC Data Source Administrator window. In C++ I could do this like this:
CDatabase myDb;
myDb.Open(NULL, FALSE, FALSE, _T("ODBC;"
, FALSE);
Eventually SQLDriverConnect is called which opens the "Select Data Source" window. I don't know if I'm not searching for the correct stuff, but I haven't been able to find much on how to do it C#. Could someone give me a push in the right direction?
Thank you very much for any help, I really appreciate it.
Thanks,
Nick
I'm working on an application where I want the user to be able to select a ODBC data source. How can I bring up the "Select Data Source" window? It looks similar to the ODBC Data Source Administrator window. In C++ I could do this like this:
CDatabase myDb;
myDb.Open(NULL, FALSE, FALSE, _T("ODBC;"
Eventually SQLDriverConnect is called which opens the "Select Data Source" window. I don't know if I'm not searching for the correct stuff, but I haven't been able to find much on how to do it C#. Could someone give me a push in the right direction?
Thank you very much for any help, I really appreciate it.
Thanks,
Nick