Home
last modified time | relevance | path

Searched refs:SQLITE_INSERT (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c857 assert( (SQLITE_INSERT-1)/9 == 1 ); in DbPreUpdateHandler()
861 assert( op==SQLITE_INSERT || op==SQLITE_UPDATE || op==SQLITE_DELETE ); in DbPreUpdateHandler()
887 assert( (SQLITE_INSERT-1)/9 == 1 ); in DbUpdateHandler()
891 assert( op==SQLITE_INSERT || op==SQLITE_UPDATE || op==SQLITE_DELETE ); in DbUpdateHandler()
1139 case SQLITE_INSERT : zCode="SQLITE_INSERT"; break; in auth_callback()
/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3.h3168 #define SQLITE_INSERT 18 /* Table Name NULL */ macro
H A Dsqlite3.c86274 if( !p || p->op==SQLITE_INSERT ){
86388 if( p->op==SQLITE_INSERT ){
209323 if( op==SQLITE_INSERT ){
209654 if( pC->op==SQLITE_INSERT ){
209827 if( op!=SQLITE_INSERT ){
209858 if( op!=SQLITE_INSERT ){
212057 case SQLITE_INSERT:
212928 assert( op==SQLITE_INSERT );
213496 if( (op1==SQLITE_INSERT && op2==SQLITE_INSERT)
213526 pNew->op = SQLITE_INSERT;
[all …]
H A Dshell.c10496 if( eOp==SQLITE_INSERT || eOp==SQLITE_UPDATE || eOp==SQLITE_DELETE ){ in idxAuthCallback()
10560 case SQLITE_INSERT: { in idxProcessOneTrigger()