Lines Matching defs:zCurrentRow
5726 const char *zCurrentRow; /* Current output row */
5727 int szRow; /* Length of the zCurrentRow string */
5845 ** record the current state of the scan. This routine sets ->zCurrentRow
5864 pCur->zCurrentRow = 0;
5867 sqlite3_keyword_name(pCur->j++, &pCur->zCurrentRow, &pCur->szRow);
5933 /* This case is when the phase presets zCurrentRow */
5934 if( pCur->zCurrentRow==0 ) continue;
5938 pCur->zCurrentRow = (const char*)sqlite3_column_text(pCur->pStmt, iCol);
5950 && sqlite3_strnicmp(pCur->zPrefix, pCur->zCurrentRow, pCur->nPrefix)==0
5971 sqlite3_result_text(ctx, pCur->zCurrentRow, pCur->szRow,SQLITE_TRANSIENT);