Searched refs:blob (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 5601 ** the opened blob. ^The size of a blob may not be changed by this 5603 ** blob. 5607 ** to create an empty, zero-filled blob in which to read or write using 5626 ** ^This function is used to move an existing blob handle so that it points 5629 ** changed. ^The database, table and column on which the blob handle is open 5630 ** remain the same. Moving an existing blob handle to a new row can be 5634 ** it must exist and there must be either a blob or text value stored in 5636 ** it does not contain a blob or text value, or if another error occurs, an 5637 ** SQLite error code is returned and the blob handl [all...] |
| /PHP_5_5/ext/sqlite3/ |
| H A D | sqlite3.c | 1074 sqlite3_blob *blob; member in struct:__anon1 1095 if (sqlite3_blob_read(sqlite3_stream->blob, buf, count, sqlite3_stream->position) != SQLITE_OK) { 1107 if (sqlite3_blob_close(sqlite3_stream->blob) != SQLITE_OK) { 1210 Open a blob as a stream which we can read / write to. */ 1218 sqlite3_blob *blob = NULL; local 1230 if (sqlite3_blob_open(db_obj->db, dbname, table, column, rowid, flags, &blob) != SQLITE_OK) { 1231 php_sqlite3_error(db_obj, "Unable to open blob: %s", sqlite3_errmsg(db_obj->db)); 1236 sqlite3_stream->blob = blob; 1238 sqlite3_stream->size = sqlite3_blob_bytes(blob); [all...] |
Completed in 86 milliseconds