Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_column_text

880 ** [sqlite3_column_text()], one for each column.  ^If an element of a
2313 ** string representation as returned by [sqlite3_column_text()].
3726 ** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(),
3774 ** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or
3780 ** <li> The initial content is a BLOB and sqlite3_column_text() or
3787 ** sqlite3_column_text() is called. The content must be converted
3801 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
3806 ** In other words, you should call sqlite3_column_text(),
3810 ** to sqlite3_column_text() or sqlite3_column_blob() with calls to
3818 ** [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
3833 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
56390 /* This happens if a malloc() inside a call to sqlite3_column_text() or
59178 ** sqlite3_column_text()
59238 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){
60979 /* This happens if a malloc() inside a call to sqlite3_column_text() or
73996 char *zIndex = (char *)sqlite3_column_text(pStmt, 0);
74023 sqlite3_column_text(pStmt, 2)
84345 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
84687 #define sqlite3_column_text sqlite3_api->column_text
84985 sqlite3_column_text,
94296 rc = execSql(db, pzErrMsg, (char*)sqlite3_column_text(pStmt, 0));
115313 const char *zText = (const char *)sqlite3_column_text(pSelect, i);
117282 const char *zText = (const char *)sqlite3_column_text(pCsr->pStmt, i+1);
118139 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol);
118968 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol+1);