Lines Matching refs:pCheck
14292 sqlite3_stmt *pCheck; /* Current check statement */ member
14425 assert( p->pCheck ); in intckSaveKey()
14453 int bLastIsNull = sqlite3_column_type(p->pCheck, ii)==SQLITE_NULL; in intckSaveKey()
14454 const char *zLast = sqlite3_column_name(p->pCheck, ii); in intckSaveKey()
14472 const char *zAlias = (const char*)sqlite3_column_name(p->pCheck,jj+1); in intckSaveKey()
14501 sqlite3_bind_value(pStmt, ii+1, sqlite3_column_value(p->pCheck, ii+1)); in intckSaveKey()
14524 assert( p->pCheck==0 ); in intckFindObject()
15063 sqlite3_finalize(p->pCheck); in sqlite3_intck_close()
15090 if( p->pCheck==0 ){ in sqlite3_intck_step()
15096 p->pCheck = intckPrepare(p, zSql); in sqlite3_intck_step()
15112 if( p->pCheck ){ in sqlite3_intck_step()
15114 if( sqlite3_step(p->pCheck)==SQLITE_ROW ){ in sqlite3_intck_step()
15117 intckFinalize(p, p->pCheck); in sqlite3_intck_step()
15118 p->pCheck = 0; in sqlite3_intck_step()
15138 assert( p->pCheck==0 || p->zMessage==0 ); in sqlite3_intck_message()
15142 if( p->pCheck ){ in sqlite3_intck_message()
15143 return (const char*)sqlite3_column_text(p->pCheck, 0); in sqlite3_intck_message()
15161 if( p->rc==SQLITE_OK && p->pCheck ){ in sqlite3_intck_unlock()
15164 intckFinalize(p, p->pCheck); in sqlite3_intck_unlock()
15165 p->pCheck = 0; in sqlite3_intck_unlock()