Lines Matching defs:ppStmt

3447 ** ^*ppStmt is left pointing to a compiled [prepared statement] that can be
3448 ** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set
3450 ** string or a comment) then *ppStmt is set to NULL.
3453 ** ppStmt may not be NULL.
3500 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3507 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3514 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3521 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
106122 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
106137 assert( ppStmt && *ppStmt==0 );
106249 assert(!(*ppStmt));
106251 *ppStmt = (sqlite3_stmt*)pParse->pVdbe;
106282 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
106288 if( ppStmt==0 ) return SQLITE_MISUSE_BKPT;
106290 *ppStmt = 0;
106296 rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, pOld, ppStmt, pzTail);
106298 sqlite3_finalize(*ppStmt);
106299 rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, pOld, ppStmt, pzTail);
106303 assert( rc==SQLITE_OK || *ppStmt==0 );
106356 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
106360 rc = sqlite3LockAndPrepare(db,zSql,nBytes,0,0,ppStmt,pzTail);
106361 assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */
106368 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
106372 rc = sqlite3LockAndPrepare(db,zSql,nBytes,1,0,ppStmt,pzTail);
106373 assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */
106387 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
106399 if( ppStmt==0 ) return SQLITE_MISUSE_BKPT;
106401 *ppStmt = 0;
106414 rc = sqlite3LockAndPrepare(db, zSql8, -1, saveSqlFlag, 0, ppStmt, &zTail8);
106444 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
106448 rc = sqlite3Prepare16(db,zSql,nBytes,0,ppStmt,pzTail);
106449 assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */
106456 sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */
106460 rc = sqlite3Prepare16(db,zSql,nBytes,1,ppStmt,pzTail);
106461 assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */
134686 ** Otherwise, set *ppStmt to point to pCsr->pStmt and return SQLITE_OK.
134688 static int fts3CursorSeekStmt(Fts3Cursor *pCsr, sqlite3_stmt **ppStmt){
134698 *ppStmt = pCsr->pStmt;
143389 sqlite3_stmt **ppStmt /* OUT: Statement handle */
143407 *ppStmt = pStmt;
143413 sqlite3_stmt **ppStmt /* OUT: Statement handle */
143428 *ppStmt = pStmt;
143435 sqlite3_stmt **ppStmt /* OUT: Statement handle */
143437 return fts3SelectDocsize(pTab, iDocid, ppStmt);
143535 ** Set *ppStmt to a statement handle that may be used to iterate through
143556 sqlite3_stmt **ppStmt /* OUT: Compiled statement */
143581 *ppStmt = pStmt;
149534 sqlite3_stmt **ppStmt,
149542 if( !*ppStmt ){
149543 int rc = sqlite3Fts3SelectDoctotal(pTab, ppStmt);
149546 pStmt = *ppStmt;