blob: f55296b90f3ec13288a5f923593444fc4260206e (
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
37
38
|
.Dd January 24, 2024
.Dt SQLITE3_FILENAME 3
.Os
.Sh NAME
.Nm sqlite3_filename
.Nd file name
.Sh SYNOPSIS
.In sqlite3.h
.Vt typedef const char *sqlite3_filename;
.Sh DESCRIPTION
Type sqlite3_filename is used by SQLite to pass filenames
to the xOpen method of a VFS.
It may be cast to (const char*) and treated as a normal, nul-terminated,
UTF-8 buffer containing the filename, but may also be passed to special
APIs such as:
.Bl -bullet
.It
sqlite3_filename_database()
.It
sqlite3_filename_journal()
.It
sqlite3_filename_wal()
.It
sqlite3_uri_parameter()
.It
sqlite3_uri_boolean()
.It
sqlite3_uri_int64()
.It
sqlite3_uri_key()
.El
.Pp
.Sh IMPLEMENTATION NOTES
These declarations were extracted from the
interface documentation at line 1275.
.Bd -literal
typedef const char *sqlite3_filename;
.Ed
|