Group: ODBC API - Library: odbc32
Testing an ODBC connection for supporting specific functionality
Using vendor-neutral SQL constructs
Retrieveing general information about the driver and data source associated with an ODBC connection
Establishing connection using the SQLDriverConnect
Obtaining list of tables stored in an ODBC Data Source
SQLRETURN SQLDisconnect(
SQLHDBC ConnectionHandle);
DECLARE SHORT SQLDisconnect IN odbc32;
AS SQLDisconnect32;
INTEGER ConnectionHandle
ConnectionHandle [Input] Connection handle.
SQL_SUCCESS, SQL_SUCCESS_WITH_INFO, SQL_ERROR, or SQL_INVALID_HANDLE.
I guess I should not explain why this function is declared with an alias.