Home | History | Annotate | Download | only in orig

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);
63491 ** sqlite3_column_bytes()
63523 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
80289 int n = z ? sqlite3_column_bytes(pStmt, 4) : 0;
91248 #define sqlite3_column_bytes sqlite3_api->column_bytes
91558 sqlite3_column_bytes,
119274 int nRoot = sqlite3_column_bytes(pStmt, 4);
120795 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
126029 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i);
128083 sqlite3_column_bytes(pStmt, 0));
128199 aSz[p->nColumn] += sqlite3_column_bytes(pStmt, iCol+1);
129240 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol);
129994 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1);
130605 if( pRtree->iNodeSize==sqlite3_column_bytes(pRtree->pReadNode, 0) ){