Lines Matching refs:pCheck
15211 sqlite3_stmt *pCheck; /* Current check statement */ member
15344 assert( p->pCheck ); in intckSaveKey()
15372 int bLastIsNull = sqlite3_column_type(p->pCheck, ii)==SQLITE_NULL; in intckSaveKey()
15373 const char *zLast = sqlite3_column_name(p->pCheck, ii); in intckSaveKey()
15391 const char *zAlias = (const char*)sqlite3_column_name(p->pCheck,jj+1); in intckSaveKey()
15420 sqlite3_bind_value(pStmt, ii+1, sqlite3_column_value(p->pCheck, ii+1)); in intckSaveKey()
15443 assert( p->pCheck==0 ); in intckFindObject()
15982 sqlite3_finalize(p->pCheck); in sqlite3_intck_close()
16009 if( p->pCheck==0 ){ in sqlite3_intck_step()
16015 p->pCheck = intckPrepare(p, zSql); in sqlite3_intck_step()
16031 if( p->pCheck ){ in sqlite3_intck_step()
16033 if( sqlite3_step(p->pCheck)==SQLITE_ROW ){ in sqlite3_intck_step()
16036 intckFinalize(p, p->pCheck); in sqlite3_intck_step()
16037 p->pCheck = 0; in sqlite3_intck_step()
16057 assert( p->pCheck==0 || p->zMessage==0 ); in sqlite3_intck_message()
16061 if( p->pCheck ){ in sqlite3_intck_message()
16062 return (const char*)sqlite3_column_text(p->pCheck, 0); in sqlite3_intck_message()
16080 if( p->rc==SQLITE_OK && p->pCheck ){ in sqlite3_intck_unlock()
16083 intckFinalize(p, p->pCheck); in sqlite3_intck_unlock()
16084 p->pCheck = 0; in sqlite3_intck_unlock()