Home
last modified time | relevance | path

Searched refs:sqlite3_blob_write (Results 1 – 18 of 18) sorted by relevance

/sqlite-3.40.0/test/
H A De_blobopen.test149 list [catch { sqlite3_blob_write $B 0 xxx 3 } msg] $msg
158 list [catch { sqlite3_blob_write $B 0 xxx 3 } msg] $msg
424 sqlite3_blob_write $B 0 "abcdefghij"
429 sqlite3_blob_write $B 0 "ABCDEFGHIJ"
433 list [catch { sqlite3_blob_write $B 0 "0987654321" } msg] $msg
441 sqlite3_blob_write $B 0 "abcdefghij"
446 sqlite3_blob_write $B 0 "ABCDEFGHIJ"
458 sqlite3_blob_write $B 0 "abcdefghij"
463 sqlite3_blob_write $B 0 "ABCDEFGHIJ"
485 sqlite3_blob_write $B 0 "xxxxx" 5
[all …]
H A Dincrblob3.test99 list [catch {sqlite3_blob_write $::blob 0 "abcd"} msg] $msg
112 # incrblob3-3.3: sqlite3_blob_write()
124 list [catch {sqlite3_blob_write {} 0 "abcd"} msg] $msg
147 list [catch { sqlite3_blob_write $::blob -1 "abcdefghij" 10 } msg] $msg
150 list [catch { sqlite3_blob_write $::blob 0 "abcdefghij" -10 } msg] $msg
153 list [catch { sqlite3_blob_write $::blob 95 "abcdefghij" } msg] $msg
H A De_blobwrite.test42 # EVIDENCE-OF: R-45864-01884 On success, sqlite3_blob_write() returns
47 # Tcl sqlite3_blob_write() wrapper uses an empty string in place of
51 set res [sqlite3_blob_write $B $iOffset $blob $nData]
69 # In cases where the underlying sqlite3_blob_write() function returns
82 set cmd [list sqlite3_blob_write $B $iOffset $blob $nData]
H A Dincrblob2.test183 set rc [catch {sqlite3_blob_write $::handles(3) 10 HELLO} msg]
316 sqlite3_blob_write $wrHandle 0 ABCDEF
351 sqlite3_blob_write $wrHandle 0 ZZZZZZZZZZ
359 sqlite3_blob_write $wrHandle 2147483647 YYYYYYYYYYYYYYYYYY
H A Dincrblob.test248 sqlite3_blob_write $::blob 20 "qwertyuioplkjhgfds"
642 set rc [catch {sqlite3_blob_write $::b 10 HELLO} msg]
653 # sqlite3_blob_write() are less than zero, SQLITE_ERROR is returned.
659 set rc [catch {sqlite3_blob_write $::b 10 HELLO -1} msg]
666 set rc [catch {sqlite3_blob_write $::b -1 HELLO 5} msg]
676 set rc [catch {sqlite3_blob_write $::b 0 etilqs 6} msg]
H A DcorruptK.test46 # we can use sqlite3_blob_write() to manipulate the size field of
49 # Then use sqlite3_blob_write() to set the size of said free slot
H A De_blobbytes.test75 list [catch { sqlite3_blob_write $B 86 "1" 1 } msg] $msg
H A Dincrblob_err.test134 sqlite3_blob_write $::blob [expr 500*1020-20] 12345678900987654321
H A De_blobclose.test131 sqlite3_blob_write $B 0 "abcdefghij" 10
H A Dkvtest.c1009 rc = sqlite3_blob_write(pBlob, pData, (int)nData, 0); in runMain()
/sqlite-3.40.0/src/
H A Dloadext.c110 #define sqlite3_blob_write 0 macro
295 sqlite3_blob_write,
H A Dtest_blob.c300 rc = sqlite3_blob_write(pBlob, zBuf, nBuf, iOffset); in test_blob_write()
H A Dvdbeblob.c460 int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){ in sqlite3_blob_write() function
H A Dsqlite3ext.h522 #define sqlite3_blob_write sqlite3_api->blob_write macro
H A Dtclsqlite.c317 rc = sqlite3_blob_write(p->pBlob, (void *)buf, nWrite, p->iSeek); in incrblobOutput()
H A Dsqlite.h.in7426 ** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces
7483 ** [sqlite3_blob_write()]. The [BLOB handle] can be moved to a
7493 ** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for
7513 ** [sqlite3_blob_bytes()], [sqlite3_blob_write()].
7541 ** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or
7614 ** See also: [sqlite3_blob_write()].
7626 ** ^(On success, sqlite3_blob_write() returns SQLITE_OK.
7658 int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset);
10095 ** When the [sqlite3_blob_write()] API is used to update a blob column,
10099 ** sqlite3_blob_write() API, the [sqlite3_preupdate_blobwrite()] returns
/sqlite-3.40.0/ext/misc/
H A Dblobio.c126 rc = sqlite3_blob_write(pBlob, aData, nData, iOfst); in writeblobFunc()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_index.c5768 sqlite3_blob_write(pBlob, aCookie, 4, 0); in sqlite3Fts5IndexSetCookie()