Open mikepizzo opened 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:
Instead, we should have:
#define SQL_AF_EVERY SQL_AF_ALL
and renumber the remaining bits accordingly.
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.