Lines Matching defs:sqlite3_column_text

890 ** [sqlite3_column_text()], one for each column.  ^If an element of a
2436 ** string representation as returned by [sqlite3_column_text()].
4007 ** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(),
4055 ** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or
4061 ** <li> The initial content is a BLOB and sqlite3_column_text() or
4068 ** sqlite3_column_text() is called. The content must be converted
4082 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
4087 ** In other words, you should call sqlite3_column_text(),
4091 ** to sqlite3_column_text() or sqlite3_column_blob() with calls to
4099 ** [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
4114 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
59463 /* This happens if a malloc() inside a call to sqlite3_column_text() or
62285 ** sqlite3_column_text()
62345 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){
64098 /* This happens if a malloc() inside a call to sqlite3_column_text() or
78264 zIndex = (char *)sqlite3_column_text(pStmt, 0);
78291 sqlite3_column_text(pStmt, 2)
88817 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
89162 #define sqlite3_column_text sqlite3_api->column_text
89472 sqlite3_column_text,
98994 rc = execSql(db, pzErrMsg, (char*)sqlite3_column_text(pStmt, 0));
123131 const char *zText = (const char *)sqlite3_column_text(pSelect, i);
125255 const char *zText = (const char *)sqlite3_column_text(pCsr->pStmt, i+1);
126151 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol);
126910 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol+1);