blob: 710e196f11318f38d5568e535ee8256954a8a945 (
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
|
.Dd January 24, 2024
.Dt SQLITE3_BLOB_BYTES 3
.Os
.Sh NAME
.Nm sqlite3_blob_bytes
.Nd return the size of an open BLOB
.Sh SYNOPSIS
.In sqlite3.h
.Ft int
.Fo sqlite3_blob_bytes
.Fa "sqlite3_blob *"
.Fc
.Sh DESCRIPTION
Returns the size in bytes of the BLOB accessible via the successfully
opened BLOB handle in its only argument.
The incremental blob I/O routines can only read or overwriting existing
blob content; they cannot change the size of a blob.
.Pp
This routine only works on a BLOB handle which has been
created by a prior successful call to
.Fn sqlite3_blob_open
and which has not been closed by
.Fn sqlite3_blob_close .
Passing any other pointer in to this routine results in undefined and
probably undesirable behavior.
.Sh IMPLEMENTATION NOTES
These declarations were extracted from the
interface documentation at line 7824.
.Bd -literal
SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *);
.Ed
.Sh SEE ALSO
.Xr sqlite3_blob 3 ,
.Xr sqlite3_blob_close 3 ,
.Xr sqlite3_blob_open 3
|