Home | History | Annotate | Download | only in dist

Lines Matching defs:pCnt

171041       sqlite3_stmt *pCnt = 0;
171042 p->rc = prepareAndCollectError(p->dbRbu, &pCnt, &p->zErrmsg,
171046 && sqlite3_step(pCnt)==SQLITE_ROW
171047 && 1==sqlite3_column_int(pCnt, 0)
171051 rc2 = sqlite3_finalize(pCnt);
197519 int *pCnt = (int*)pContext;
197523 (*pCnt)++;
199155 sqlite3_stmt *pCnt = 0;
199156 rc = sqlite3_prepare_v2(pConfig->db, zSql, -1, &pCnt, 0);
199158 if( SQLITE_ROW==sqlite3_step(pCnt) ){
199159 *pnRow = sqlite3_column_int64(pCnt, 0);
199161 rc = sqlite3_finalize(pCnt);