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
As per spec:
"The value of SQL_AF_EVERY is a synonym for the current SQL_AF_ALL"
Right now, in sqlext.h, we have:
#define SQL_AF_ALL 0x00000040L #if (ODBCVER >= 0x0400) #define SQL_AF_EVERY 0x00000080L
Instead, we should have:
#define SQL_AF_EVERY SQL_AF_ALL
and renumber the remaining bits accordingly.
The text was updated successfully, but these errors were encountered:
deata
No branches or pull requests
As per spec:
Right now, in sqlext.h, we have:
#define SQL_AF_ALL 0x00000040L
#if (ODBCVER >= 0x0400)
#define SQL_AF_EVERY 0x00000080L
Instead, we should have:
and renumber the remaining bits accordingly.
The text was updated successfully, but these errors were encountered: