>From what I have read, if I make the call
SQLDriverConnect(
hDbc,
hWnd,
"ODBC;DRIVER={such and such}",
SQL_NTS,
buffer,
bufferLen,
&actualLen,
SQL_DRIVER_PROMPT);
the ODBC driver manager should bring up the driver's configuration
window and the resulting connection string will be passed to 'buffer'.
When I do this, however, I only get the ODBC "Select Data Source"
dialog. This is not very helpful considering I do not want to create a
named DSN.
I have looked through the ODBC API docs and cannot find a function that
talks directly to the driver instead of going through the driver
manager, so I assume this is the only way to accomplish what I need.
If anyone has an ideas or can point me in the right direction, the help
would be appreciated.