Home
last modified time | relevance | path

Searched refs:zCurrentRow (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Dcompletion.c64 const char *zCurrentRow; /* Current output row */ member
202 pCur->zCurrentRow = 0; in completionNext()
205 sqlite3_keyword_name(pCur->j++, &pCur->zCurrentRow, &pCur->szRow); in completionNext()
272 if( pCur->zCurrentRow==0 ) continue; in completionNext()
276 pCur->zCurrentRow = (const char*)sqlite3_column_text(pCur->pStmt, iCol); in completionNext()
288 && sqlite3_strnicmp(pCur->zPrefix, pCur->zCurrentRow, pCur->nPrefix)==0 in completionNext()
309 sqlite3_result_text(ctx, pCur->zCurrentRow, pCur->szRow,SQLITE_TRANSIENT); in completionColumn()