Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c876 assert( (SQLITE_INSERT-1)/9 == 1 ); in DbPreUpdateHandler()
880 assert( op==SQLITE_INSERT || op==SQLITE_UPDATE || op==SQLITE_DELETE ); in DbPreUpdateHandler()
906 assert( (SQLITE_INSERT-1)/9 == 1 ); in DbUpdateHandler()
910 assert( op==SQLITE_INSERT || op==SQLITE_UPDATE || op==SQLITE_DELETE ); in DbUpdateHandler()
1158 case SQLITE_INSERT : zCode="SQLITE_INSERT"; break; in auth_callback()
/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3.h3289 #define SQLITE_INSERT 18 /* Table Name NULL */ macro
H A Dsqlite3.c92547 if( !p || p->op==SQLITE_INSERT ){
92682 if( p->op==SQLITE_INSERT ){
225788 if( op==SQLITE_INSERT ){
226457 if( pC->op==SQLITE_INSERT ){
226644 if( op!=SQLITE_INSERT ){
226683 if( op!=SQLITE_INSERT ){
228944 case SQLITE_INSERT:
229837 assert( op==SQLITE_INSERT );
230425 if( (op1==SQLITE_INSERT && op2==SQLITE_INSERT)
230455 pNew->op = SQLITE_INSERT;
[all …]
H A Dshell.c13184 if( eOp==SQLITE_INSERT || eOp==SQLITE_UPDATE || eOp==SQLITE_DELETE ){ in idxAuthCallback()
13249 case SQLITE_INSERT: { in idxProcessOneTrigger()