Lines Matching refs:sqlite3_column_bytes

5388 ** <tr><td><b>sqlite3_column_bytes</b><td>&rarr;<td>Size of a BLOB
5439 ** If the result is a BLOB or a TEXT string, then the sqlite3_column_bytes()
5443 ** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes()
5445 ** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts
5447 ** ^If the result is a numeric value then sqlite3_column_bytes() uses
5450 ** ^If the result is NULL, then sqlite3_column_bytes() returns zero.
5461 ** ^The values returned by [sqlite3_column_bytes()] and
5464 ** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of
5530 ** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or
5545 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
5546 ** <li>sqlite3_column_blob() followed by sqlite3_column_bytes()</li>
5552 ** into the desired format, then invoke sqlite3_column_bytes() or
5556 ** with calls to sqlite3_column_bytes().
5574 ** <li> sqlite3_column_bytes()
5592 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
91715 ** sqlite3_column_bytes()
91749 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
120344 pSample->n = sqlite3_column_bytes(pStmt, 4);
136848 #define sqlite3_column_bytes sqlite3_api->column_bytes
137294 sqlite3_column_bytes,
189158 int nRoot = sqlite3_column_bytes(pStmt, 4);
191168 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
195643 && sqlite3_column_bytes(pStmt, 0)==sizeof(*pp)
197559 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i);
199946 sqlite3_column_bytes(pStmt, 0));
200073 aSz[p->nColumn] += sqlite3_column_bytes(pStmt, iCol+1);
200144 sqlite3_column_bytes(pStmt, 4), /* segdir.root */
200761 nRoot = sqlite3_column_bytes(pSelect, 4);
201170 int nRoot = sqlite3_column_bytes(pFetch, 4);
201320 int nHint = sqlite3_column_bytes(pSelect, 0);
203059 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol);
203370 n = sqlite3_column_bytes(pStmt, 0);
203600 const char *pEnd = a + sqlite3_column_bytes(pSelectDocsize, 0);
203962 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1);
214236 int nNode = sqlite3_column_bytes(pCheck->pGetNode, 0);
225976 nByte += sqlite3_column_bytes(pStmt, 1); /* name */
225977 nByte += sqlite3_column_bytes(pStmt, 4); /* dflt_value */
226017 int nName = sqlite3_column_bytes(pStmt, 1);
226018 int nDflt = sqlite3_column_bytes(pStmt, 4);
226189 int n = sqlite3_column_bytes(pDflt, iField);
226224 int n = sqlite3_column_bytes(pDflt, iField);
226233 int n = sqlite3_column_bytes(pDflt, iField);
227457 nByte = sqlite3_column_bytes(pStmt, iCol);
227542 && n==sqlite3_column_bytes(pStmt, i)
230570 int n = sqlite3_column_bytes(pTab->pDfltStmt, ii);
248548 int nIdxTerm = sqlite3_column_bytes(pStmt, 1);
250423 nBlob = sqlite3_column_bytes(pSorter->pStmt, 1);
251524 *pn = sqlite3_column_bytes(pCsr->pStmt, iCol+1);
253150 nText = sqlite3_column_bytes(pSeek, iCol);
253400 int nText = sqlite3_column_bytes(pScan, ctx.iCol+1);
253704 int nText = sqlite3_column_bytes(pScan, i+1);
253843 int nBlob = sqlite3_column_bytes(pLookup, 0);