Home | History | Annotate | Download | only in orig

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);
63540 /* This happens if a malloc() inside a call to sqlite3_column_text() or
67034 ** sqlite3_column_text()
67094 SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){
68520 sqlite3_column_text() or
85071 zIndex = (char *)sqlite3_column_text(pStmt, 0);
85122 zIndex = (char *)sqlite3_column_text(pStmt, 0);
85135 decodeIntArray((char*)sqlite3_column_text(pStmt,1),nCol,pSample->anEq,0,0);
85136 decodeIntArray((char*)sqlite3_column_text(pStmt,2),nCol,pSample->anLt,0,0);
85137 decodeIntArray((char*)sqlite3_column_text(pStmt,3),nCol,pSample->anDLt,0,0);
96896 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
97276 #define sqlite3_column_text sqlite3_api->column_text
97612 sqlite3_column_text,
109023 rc = execSql(db, pzErrMsg, (char*)sqlite3_column_text(pStmt, 0));
137775 const char *zText = (const char *)sqlite3_column_text(pSelect, i);
139717 const unsigned char *zText = sqlite3_column_text(pStmt, iCol);
140214 const char *z = (const char *) sqlite3_column_text(pStmt, iCol+1);
141877 const char *zText = (const char *)sqlite3_column_text(pStmt, iCol+1);
142052 const char *zText = (const char *)sqlite3_column_text(pCsr->pStmt, i+1);
142986 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol);
143763 zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol+1);