Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:sqlite3_column_bytes

3789 ** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes()
3791 ** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts
3793 ** ^If the result is a numeric value then sqlite3_column_bytes() uses
3796 ** ^If the result is NULL, then sqlite3_column_bytes() returns zero.
3807 ** ^The values returned by [sqlite3_column_bytes()] and
3810 ** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of
3873 ** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or
3888 sqlite3_column_bytes()</li>
3889 ** <li>sqlite3_column_blob() followed by sqlite3_column_bytes()</li>
3895 ** into the desired format, then invoke sqlite3_column_bytes() or
3899 ** with calls to sqlite3_column_bytes().
3915 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
61070 ** sqlite3_column_bytes()
61102 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
76010 int n = sqlite3_column_bytes(pStmt, 2);
86733 #define sqlite3_column_bytes sqlite3_api->column_bytes
87036 sqlite3_column_bytes,
115208 int nRoot = sqlite3_column_bytes(pStmt, 4);
120669 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i);
121019 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
122312 sqlite3_column_bytes(pStmt, 0));
123314 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol);
124141 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1);
124749 if( pRtree->iNodeSize==sqlite3_column_bytes(pRtree->pReadNode, 0) ){