Lines Matching defs:sqlite3_column_text

471 ** [sqlite3_column_text()], one for each column.  ^If an element of a
2245 ** string representation as returned by [sqlite3_column_text()].
3925 ** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(),
3973 ** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or
3979 ** <li> The initial content is a BLOB and sqlite3_column_text() or
3986 ** sqlite3_column_text() is called. The content must be converted
4000 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
4005 ** In other words, you should call sqlite3_column_text(),
4009 ** to sqlite3_column_text() or sqlite3_column_blob() with calls to
4017 ** from [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
4032 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
63560 /* This happens if a malloc() inside a call to sqlite3_column_text() or
67054 ** sqlite3_column_text()
67114 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){
68540 /* This happens if a malloc() inside a call to sqlite3_column_text() or
85091 zIndex = (char *)sqlite3_column_text(pStmt, 0);
85142 zIndex = (char *)sqlite3_column_text(pStmt, 0);
85155 decodeIntArray((char*)sqlite3_column_text(pStmt,1),nCol,pSample->anEq,0,0);
85156 decodeIntArray((char*)sqlite3_column_text(pStmt,2),nCol,pSample->anLt,0,0);
85157 decodeIntArray((char*)sqlite3_column_text(pStmt,3),nCol,pSample->anDLt,0,0);
96916 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
97296 #define sqlite3_column_text sqlite3_api->column_text
97632 sqlite3_column_text,
109043 rc = execSql(db, pzErrMsg, (char*)sqlite3_column_text(pStmt, 0));
137807 const char *zText = (const char *)sqlite3_column_text(pSelect, i);
139749 const unsigned char *zText = sqlite3_column_text(pStmt, iCol);
140246 const char *z = (const char *) sqlite3_column_text(pStmt, iCol+1);
141909 const char *zText = (const char *)sqlite3_column_text(pStmt, iCol+1);
142084 const char *zText = (const char *)sqlite3_column_text(pCsr->pStmt, i+1);
143018 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol);
143795 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol+1);