Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:sqlite3_column_text

880 ** [sqlite3_column_text()], one for each column.  ^If an element of a
2372 ** string representation as returned by [sqlite3_column_text()].
3813 ** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(),
3861 ** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or
3867 ** <li> The initial content is a BLOB and sqlite3_column_text() or
3874 ** sqlite3_column_text() is called. The content must be converted
3888 sqlite3_column_text() followed by sqlite3_column_bytes()</li>
3893 ** In other words, you should call sqlite3_column_text(),
3897 ** to sqlite3_column_text() or sqlite3_column_blob() with calls to
3905 ** [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
3920 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
58272 /* This happens if a malloc() inside a call to sqlite3_column_text() or
61067 ** sqlite3_column_text()
61127 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){
62888 /* This happens if a malloc() inside a call to sqlite3_column_text() or
75981 zIndex = (char *)sqlite3_column_text(pStmt, 0);
76008 sqlite3_column_text(pStmt, 2)
86407 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
86749 #define sqlite3_column_text sqlite3_api->column_text
87052 sqlite3_column_text,
96429 rc = execSql(db, pzErrMsg, (char*)sqlite3_column_text(pStmt, 0));
110802 const char* z = (const char *)sqlite3_column_text(pStmt, 0);
120662 const char *zText = (const char *)sqlite3_column_text(pSelect, i);
122469 const char *zText = (const char *)sqlite3_column_text(pCsr->pStmt, i+1);
123307 sqlite3_column_text(pCsr->pStmt, iCol);
124140 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol+1);