Re: unixODBC-GUI-Qt: some text for www.unixodbc.org (enough to prime)
Peter Harvey <[email protected]>
| Newsgroups | gmane.comp.db.unixodbc.devel |
|---|---|
| Message-ID | <[email protected]> |
I am pretty certain that the DM does not attempt to prompt for a data
source when provided an empty 'in' string to SQLDriverConnect. This is
something that could be added. For example;
if ( !conn_str_in )
{
/*
* not quite by the book, but better than nothing
*/
conn_str_in = (SQLCHAR*)"DSN=DEFAULT;";
len_conn_str_in = strlen((char*) conn_str_in );
}
The above code could be altered such that it goes into a UI plugin to
get a data source to use. I could add the following to odbcinst;
BOOL SQLDriverConnectPrompt( HWND hWnd, SQLCHAR *pszChars, SQLSMALLINT
nMaxChars );
And a corresponding call like this to the UI plugin (odbcinstQ4);
BOOL ODBCDriverConnectPrompt( HODBCINSTWND hWnd, SQLCHAR *pszChars,
SQLSMALLINT nMaxChars );
--
Peter
Nick Gorham wrote:
> Igor Korot wrote:
>
>> Hi, Peter,
>> Maybe while you're at it, you could implement this:
>>
>> http://msdn.microsoft.com/en-us/library/ms715400(VS.85).aspx?
>>
>>
>
> It already does, at least the bit that the driver manager does, the
> rest is down to the driver.
>
_______________________________________________
unixODBC-dev mailing list
[email protected]
http://mailman.unixodbc.org/mailman/listinfo/unixodbc-dev