microsoft / ODBC-Specification

Microsoft ODBC Specification
Other
122 stars 40 forks source link

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

Open mikepizzo opened 7 years ago

mikepizzo commented 7 years ago

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.