summaryrefslogtreecommitdiff
path: root/static/netbsd/man3/sqlite3_filename.3
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 19:55:15 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 19:55:15 -0400
commit253e67c8b3a72b3a4757fdbc5845297628db0a4a (patch)
treeadf53b66087aa30dfbf8bf391a1dadb044c3bf4d /static/netbsd/man3/sqlite3_filename.3
parenta9157ce950dfe2fc30795d43b9d79b9d1bffc48b (diff)
docs: Added All NetBSD Manuals
Diffstat (limited to 'static/netbsd/man3/sqlite3_filename.3')
-rw-r--r--static/netbsd/man3/sqlite3_filename.338
1 files changed, 38 insertions, 0 deletions
diff --git a/static/netbsd/man3/sqlite3_filename.3 b/static/netbsd/man3/sqlite3_filename.3
new file mode 100644
index 00000000..f55296b9
--- /dev/null
+++ b/static/netbsd/man3/sqlite3_filename.3
@@ -0,0 +1,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