Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_column_text

834 ** [sqlite3_column_text()], one for each column.  ^If an element of a
2135 ** string representation as returned by [sqlite3_column_text()].
3478 ** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(),
3531 ** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or
3537 ** <li> The initial content is a BLOB and sqlite3_column_text() or
3544 ** sqlite3_column_text() is called. The content must be converted
3558 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
3563 ** In other words, you should call sqlite3_column_text(),
3567 ** to sqlite3_column_text() or sqlite3_column_blob() with calls to
3575 ** [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
3590 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
48501 /* This happens if a malloc() inside a call to sqlite3_column_text() or
51213 ** sqlite3_column_text()
51274 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){
52990 /* This happens if a malloc() inside a call to sqlite3_column_text() or
65632 char *zIndex = (char *)sqlite3_column_text(pStmt, 0);
65660 sqlite3_column_text(pStmt, 2)
75904 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
76225 #define sqlite3_column_text sqlite3_api->column_text
76502 sqlite3_column_text,
85547 rc = execSql(db, pzErrMsg, (char*)sqlite3_column_text(pStmt, 0));
104522 const char *zText = (const char *)sqlite3_column_text(pSelect, i);
106677 zDoc = (const char*)sqlite3_column_text(pCsr->pStmt, i+1);
106829 zDoc = (const char*)sqlite3_column_text(pCursor->pStmt, iCol+1);
107519 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol+1);