We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The signature of SQLInstallerError is defined as
SQLInstallerError
(UInt16, Ref{UInt16}, Ptr{UInt8}, UInt16, Ref{UInt16})
while ODBC API Reference specifies it as
RETCODE SQLInstallerError( WORD iError, DWORD * pfErrorCode, LPSTR lpszErrorMsg, WORD cbErrorMsgMax, WORD * pcbErrorMsg);
The second argument has the type DWORD *, which corresponds to Ref{UInt32} rather than Ref{UInt16}.
DWORD *
Ref{UInt32}
Ref{UInt16}
Similarly, Ref{UInt16} is incorrectly used for a DWORD * argument in SQLInstallDriverEx and SQLRemoveDriver.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The signature of
SQLInstallerError
is defined aswhile ODBC API Reference specifies it as
The second argument has the type
DWORD *
, which corresponds toRef{UInt32}
rather thanRef{UInt16}
.Similarly,
Ref{UInt16}
is incorrectly used for aDWORD *
argument in SQLInstallDriverEx and SQLRemoveDriver.The text was updated successfully, but these errors were encountered: