Skip to content
New issue

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

In sqlext.h, SQL_AF_EVERY should be a synonym for SQL_AF_ALL #124

Open
mikepizzo opened this issue Sep 8, 2017 · 0 comments
Open

In sqlext.h, SQL_AF_EVERY should be a synonym for SQL_AF_ALL #124

mikepizzo opened this issue Sep 8, 2017 · 0 comments
Assignees
Labels

Comments

@mikepizzo
Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants