Searched refs:sqlite3_column_bytes (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Modules/_sqlite/ |
H A D | cursor.c | 356 * Note, sqlite3_column_bytes() must come after sqlite3_column_blob() in _pysqlite_fetch_one_row() 371 nbytes = sqlite3_column_bytes(self->statement->st, i); in _pysqlite_fetch_one_row() 396 nbytes = sqlite3_column_bytes(self->statement->st, i); in _pysqlite_fetch_one_row() 433 nbytes = sqlite3_column_bytes(self->statement->st, i); in _pysqlite_fetch_one_row()
|
/third_party/sqlite/include/ |
H A D | sqlite3ext.h | 414 #define sqlite3_column_bytes sqlite3_api->column_bytes macro
|
H A D | sqlite3.h | 4947 ** <tr><td><b>sqlite3_column_bytes</b><td>→<td>Size of a BLOB 4998 ** If the result is a BLOB or a TEXT string, then the sqlite3_column_bytes() 5002 ** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes() 5004 ** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts 5006 ** ^If the result is a numeric value then sqlite3_column_bytes() uses 5009 ** ^If the result is NULL, then sqlite3_column_bytes() returns zero. 5020 ** ^The values returned by [sqlite3_column_bytes()] and 5023 ** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of 5089 ** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or 5104 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</l [all...] |
/third_party/sqlite/src/ |
H A D | shell.c | 2199 int n2 = sqlite3_column_bytes(pStmt, i); in sha3QueryFunc() 2206 int n2 = sqlite3_column_bytes(pStmt, i); in sha3QueryFunc() 5939 pCur->szRow = sqlite3_column_bytes(pCur->pStmt, iCol); in completionNext() 11757 int nCopy = sqlite3_column_bytes(pStmt, 0); in dbdataLoadPage() 13321 nPg = sqlite3_column_bytes(pStmt, 0); in recoverGetPage() 13664 nByte += (sqlite3_column_bytes(pStmt, 1)+1); in recoverAddTable() 13683 int n = sqlite3_column_bytes(pStmt, 1); in recoverAddTable() 16821 int nBlob = sqlite3_column_bytes(p->pStmt, i); in shell_callback() 16862 int nBlob = sqlite3_column_bytes(p->pStmt, i); in shell_callback() 16901 int nBlob = sqlite3_column_bytes( in shell_callback() [all...] |
H A D | sqlite3.c | 5256 ** <tr><td><b>sqlite3_column_bytes</b><td>→<td>Size of a BLOB 5307 ** If the result is a BLOB or a TEXT string, then the sqlite3_column_bytes() 5311 ** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes() 5313 ** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts 5315 ** ^If the result is a numeric value then sqlite3_column_bytes() uses 5318 ** ^If the result is NULL, then sqlite3_column_bytes() returns zero. 5329 ** ^The values returned by [sqlite3_column_bytes()] and 5332 ** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of 5398 ** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or 5413 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</l 89129 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){ global() function 132337 #define sqlite3_column_bytes global() macro [all...] |
Completed in 153 milliseconds