Home | History | Annotate | Download | only in orig

Lines Matching defs:pCnt

171029       sqlite3_stmt *pCnt = 0;
171030 p->rc = prepareAndCollectError(p->dbRbu, &pCnt, &p->zErrmsg,
171034 && sqlite3_step(pCnt)==SQLITE_ROW
171035 && 1==sqlite3_column_int(pCnt, 0)
171039 rc2 = sqlite3_finalize(pCnt);
197507 int *pCnt = (int*)pContext;
197511 (*pCnt)++;
199143 sqlite3_stmt *pCnt = 0;
199144 rc = sqlite3_prepare_v2(pConfig->db, zSql, -1, &pCnt, 0);
199146 if( SQLITE_ROW==sqlite3_step(pCnt) ){
199147 *pnRow = sqlite3_column_int64(pCnt, 0);
199149 rc = sqlite3_finalize(pCnt);