Searched refs:pQ (Results 1 - 1 of 1) sorted by relevance
/third_party/sqlite/src/ |
H A D | shell.c | 17597 sqlite3_stmt *pQ = 0; in bind_prepared_stmt() local 17607 " WHERE key=?1", -1, &pQ, 0); in bind_prepared_stmt() 17608 if( rc || pQ==0 ) return; in bind_prepared_stmt() 17616 sqlite3_bind_text(pQ, 1, zVar, -1, SQLITE_STATIC); in bind_prepared_stmt() 17617 if( sqlite3_step(pQ)==SQLITE_ROW ){ in bind_prepared_stmt() 17618 sqlite3_bind_value(pStmt, i, sqlite3_column_value(pQ, 0)); in bind_prepared_stmt() 17622 sqlite3_reset(pQ); in bind_prepared_stmt() 17624 sqlite3_finalize(pQ); in bind_prepared_stmt()
|
Completed in 34 milliseconds