blob: b7a0b5f806f8f412acdde9730c1b6281a0a4577f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
.Dd January 24, 2024
.Dt SQLITE3_BLOB 3
.Os
.Sh NAME
.Nm sqlite3_blob
.Nd a handle to an open BLOB
.Sh SYNOPSIS
.In sqlite3.h
.Vt typedef struct sqlite3_blob sqlite3_blob;
.Sh DESCRIPTION
An instance of this object represents an open BLOB on which incremental BLOB I/O
can be performed.
Objects of this type are created by
.Fn sqlite3_blob_open
and destroyed by
.Fn sqlite3_blob_close .
The
.Fn sqlite3_blob_read
and
.Fn sqlite3_blob_write
interfaces can be used to read or write small subsections of the BLOB.
The
.Fn sqlite3_blob_bytes
interface returns the size of the BLOB in bytes.
.Sh IMPLEMENTATION NOTES
These declarations were extracted from the
interface documentation at line 7669.
.Bd -literal
typedef struct sqlite3_blob sqlite3_blob;
.Ed
.Sh SEE ALSO
.Xr sqlite3_blob_bytes 3 ,
.Xr sqlite3_blob_close 3 ,
.Xr sqlite3_blob_open 3 ,
.Xr sqlite3_blob_read 3 ,
.Xr sqlite3_blob_write 3
|