Lines Matching refs:iCol
5144 SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt*, int iCol);
5145 SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol);
5146 SQLITE_API int sqlite3_column_int(sqlite3_stmt*, int iCol);
5147 SQLITE_API sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol);
5148 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
5149 SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt*, int iCol);
5150 SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol);
5151 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
5152 SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt*, int iCol);
5153 SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol);
7161 ** set. In other words, column iCol may be required if the expression
7162 ** (colUsed & ((sqlite3_uint64)1 << (iCol>=63 ? 63 : iCol))) evaluates to
12423 ** xColumnTotalSize(pFts, iCol, pnToken):
12424 ** If parameter iCol is less than zero, set output variable *pnToken
12425 ** to the total number of tokens in the FTS5 table. Or, if iCol is
12427 ** the total number of tokens in column iCol, considering all rows in
12430 ** If parameter iCol is greater than or equal to the number of columns
12438 ** xColumnSize(pFts, iCol, pnToken):
12439 ** If parameter iCol is less than zero, set output variable *pnToken
12440 ** to the total number of tokens in the current row. Or, if iCol is
12442 ** *pnToken to the number of tokens in column iCol of the current row.
12444 ** If parameter iCol is greater than or equal to the number of columns
12453 ** This function attempts to retrieve the text of column iCol of the
12574 ** int iCol, iOff;
12575 ** for(pApi->xPhraseFirst(pFts, iPhrase, &iter, &iCol, &iOff);
12576 ** iCol>=0;
12577 ** pApi->xPhraseNext(pFts, &iter, &iCol, &iOff)
12579 ** // An instance of phrase iPhrase at offset iOff of column iCol
12591 ** through an empty set (all calls to xPhraseFirst() set iCol to -1).
12604 ** int iCol;
12605 ** for(pApi->xPhraseFirstColumn(pFts, iPhrase, &iter, &iCol);
12606 ** iCol>=0;
12607 ** pApi->xPhraseNextColumn(pFts, &iter, &iCol)
12609 ** // Column iCol contains at least one instance of phrase iPhrase
12616 ** xPhraseFirstColumn() set iCol to -1).
12634 int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken);
12649 int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);
12650 int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken);