Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_column_bytes

4111 ** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes()
4113 ** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts
4115 ** ^If the result is a numeric value then sqlite3_column_bytes() uses
4118 ** ^If the result is NULL, then sqlite3_column_bytes() returns zero.
4129 ** ^The values returned by [sqlite3_column_bytes()] and
4132 ** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of
4195 ** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or
4210 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
4211 ** <li>sqlite3_column_blob() followed by sqlite3_column_bytes()</li>
4217 ** into the desired format, then invoke sqlite3_column_bytes() or
4221 ** with calls to sqlite3_column_bytes().
4237 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
63502 ** sqlite3_column_bytes()
63534 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
80300 int n = z ? sqlite3_column_bytes(pStmt, 4) : 0;
91259 #define sqlite3_column_bytes sqlite3_api->column_bytes
91569 sqlite3_column_bytes,
119300 int nRoot = sqlite3_column_bytes(pStmt, 4);
120824 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
126058 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i);
128112 sqlite3_column_bytes(pStmt, 0));
128228 aSz[p->nColumn] += sqlite3_column_bytes(pStmt, iCol+1);
129269 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol);
130023 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1);
130634 if( pRtree->iNodeSize==sqlite3_column_bytes(pRtree->pReadNode, 0) ){