Home
last modified time | relevance | path

Searched refs:SQLITE_CountRows (Results 1 – 6 of 6) sorted by relevance

/titanic_50/usr/src/lib/libsqlite/src/
H A Dcopy.c66 if( db->flags & SQLITE_CountRows ){ in sqliteCopy()
95 if( (db->flags & SQLITE_CountRows)!=0 ){ in sqliteCopy()
102 if( db->flags & SQLITE_CountRows ){ in sqliteCopy()
H A Ddelete.c162 if( db->flags & SQLITE_CountRows ){ in sqliteDeleteFrom()
171 if( db->flags & SQLITE_CountRows ){ in sqliteDeleteFrom()
206 if( db->flags & SQLITE_CountRows ){ in sqliteDeleteFrom()
306 if( db->flags & SQLITE_CountRows ){ in sqliteDeleteFrom()
H A Dupdate.c244 if( db->flags & SQLITE_CountRows && !pParse->trigStack ){ in sqliteUpdate()
400 if( db->flags & SQLITE_CountRows && !pParse->trigStack){ in sqliteUpdate()
449 if( db->flags & SQLITE_CountRows && !pParse->trigStack ){ in sqliteUpdate()
H A Dinsert.c327 if( db->flags & SQLITE_CountRows ){ in sqliteInsert()
484 if( (db->flags & SQLITE_CountRows)!=0 ){ in sqliteInsert()
531 if( db->flags & SQLITE_CountRows ){ in sqliteInsert()
H A Dpragma.c126 { "count_changes", SQLITE_CountRows }, in flagPragma()
H A DsqliteInt.h405 #define SQLITE_CountRows 0x00000080 /* Count rows changed by INSERT, */ macro