At time of the patch DBGUID_DBSQL is the same as DBGUID_DEFAULT.
From: Alistair Leslie-Hughes leslie_alistair@hotmail.com
At time of the patch DBGUID_DBSQL is the same as DBGUID_DEFAULT. --- include/dbs.idl | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/dbs.idl b/include/dbs.idl index 8b137453bfb..5e10b7eda49 100644 --- a/include/dbs.idl +++ b/include/dbs.idl @@ -521,6 +521,7 @@ cpp_quote("#define DBCIDGUID {0x0c733a81, 0x2a1c, 0x11ce, {0xad, 0 cpp_quote("#define DB_NULLGUID {0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}}")
cpp_quote("DEFINE_DBGUID(DBGUID_SQL, 0xc8b522d7, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);") +cpp_quote("DEFINE_DBGUID(DBGUID_DBSQL, 0xc8b521fb, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);") cpp_quote("DEFINE_DBGUID(DBGUID_DEFAULT, 0xc8b521fb, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);") cpp_quote("DEFINE_DBGUID(DBGUID_SESSION, 0xc8b522f5, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);") cpp_quote("DEFINE_DBGUID(DBGUID_ROWSET, 0xc8b522f6, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);")
From: Alistair Leslie-Hughes leslie_alistair@hotmail.com
--- include/oledberr.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/oledberr.h b/include/oledberr.h index 1ca5446d06e..b3445d50c10 100644 --- a/include/oledberr.h +++ b/include/oledberr.h @@ -93,6 +93,7 @@
#define DB_E_MISMATCHEDPROVIDER 0x80040e75
+#define DB_S_ROWLIMITEXCEEDED 0x00040ec0 #define DB_S_BOOKMARKSKIPPED 0x00040ec3 #define DB_S_NONEXTROWSET 0x00040ec5 #define DB_S_ENDOFROWSET 0x00040ec6
From: Alistair Leslie-Hughes leslie_alistair@hotmail.com
--- include/dbs.idl | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/include/dbs.idl b/include/dbs.idl index 5e10b7eda49..aea304d4e62 100644 --- a/include/dbs.idl +++ b/include/dbs.idl @@ -801,6 +801,11 @@ typedef struct tagRMTPACK [size_is(cArray)] VARIANT *rgArray; } RMTPACK;
+typedef struct tagDBVECTOR { + DBLENGTH size; + [size_is((ULONG)size)] void *ptr; +} DBVECTOR; + typedef struct tagDBDATE { SHORT year; USHORT month;