Lines Matching defs:sqlite3_column_bytes

4281 ** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes()
4283 ** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts
4285 ** ^If the result is a numeric value then sqlite3_column_bytes() uses
4288 ** ^If the result is NULL, then sqlite3_column_bytes() returns zero.
4299 ** ^The values returned by [sqlite3_column_bytes()] and
4302 ** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of
4365 ** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or
4380 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
4381 ** <li>sqlite3_column_blob() followed by sqlite3_column_bytes()</li>
4387 ** into the desired format, then invoke sqlite3_column_bytes() or
4391 ** with calls to sqlite3_column_bytes().
4407 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
63932 ** sqlite3_column_bytes()
63964 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
81272 int n = z ? sqlite3_column_bytes(pStmt, 4) : 0;
92466 #define sqlite3_column_bytes sqlite3_api->column_bytes
92799 sqlite3_column_bytes,
121957 int nRoot = sqlite3_column_bytes(pStmt, 4);
123563 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
129695 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i);
131817 sqlite3_column_bytes(pStmt, 0));
131939 aSz[p->nColumn] += sqlite3_column_bytes(pStmt, iCol+1);
132009 sqlite3_column_bytes(pStmt, 4), /* segdir.root */
132599 nRoot = sqlite3_column_bytes(pSelect, 4);
132985 int nRoot = sqlite3_column_bytes(pFetch, 4);
133133 int nHint = sqlite3_column_bytes(pSelect, 0);
133573 int nText = sqlite3_column_bytes(pStmt, iCol+1);
134674 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol);
135445 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1);
136837 if( pRtree->iNodeSize==sqlite3_column_bytes(pRtree->pReadNode, 0) ){