Searched defs:aDb (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A DsqliteInt.h259 ** in the sqlite.aDb[] array. aDb[0] is the main database file and
260 ** aDb[1] is the database file used to hold temporary tables. Additional
281 #define DbHasProperty(D,I,P) (((D)->aDb[I].flags&(P))==(P))
282 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].flags&(P))!=0)
283 #define DbSetProperty(D,I,P) (D)->aDb[I].flags|=(P)
284 #define DbClearProperty(D,I,P) (D)->aDb[I].flags&=~(P)
349 Db *aDb; /* All backends */ member in struct:sqlite
357 int next_cookie; /* Next value of aDb[0].schema_cookie */
490 ** in sqlite.aDb[]
[all...]

Completed in 20 milliseconds