Home | History | Annotate | Download | only in orig

Lines Matching refs:iCol

4536 SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt*, int iCol);
4537 SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol);
4538 SQLITE_API int sqlite3_column_int(sqlite3_stmt*, int iCol);
4539 SQLITE_API sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol);
4540 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
4541 SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt*, int iCol);
4542 SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol);
4543 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
4544 SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt*, int iCol);
4545 SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol);
6184 ** set. In other words, column iCol may be required if the expression
6185 ** (colUsed & ((sqlite3_uint64)1 << (iCol>=63 ? 63 : iCol))) evaluates to
10307 ** xColumnTotalSize(pFts, iCol, pnToken):
10308 ** If parameter iCol is less than zero, set output variable *pnToken
10309 ** to the total number of tokens in the FTS5 table. Or, if iCol is
10311 ** the total number of tokens in column iCol, considering all rows in
10314 ** If parameter iCol is greater than or equal to the number of columns
10322 ** xColumnSize(pFts, iCol, pnToken):
10323 ** If parameter iCol is less than zero, set output variable *pnToken
10324 ** to the total number of tokens in the current row. Or, if iCol is
10326 ** *pnToken to the number of tokens in column iCol of the current row.
10328 ** If parameter iCol is greater than or equal to the number of columns
10337 ** This function attempts to retrieve the text of column iCol of the
10462 ** int iCol, iOff;
10463 ** for(pApi->xPhraseFirst(pFts, iPhrase, &iter, &iCol, &iOff);
10464 ** iCol>=0;
10465 ** pApi->xPhraseNext(pFts, &iter, &iCol, &iOff)
10467 ** // An instance of phrase iPhrase at offset iOff of column iCol
10479 ** through an empty set (all calls to xPhraseFirst() set iCol to -1).
10492 ** int iCol;
10493 ** for(pApi->xPhraseFirstColumn(pFts, iPhrase, &iter, &iCol);
10494 ** iCol>=0;
10495 ** pApi->xPhraseNextColumn(pFts, &iter, &iCol)
10497 ** // Column iCol contains at least one instance of phrase iPhrase
10504 ** xPhraseFirstColumn() set iCol to -1).
10522 int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken);
10537 int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);
10538 int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken);