diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-25 19:55:15 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-25 19:55:15 -0400 |
| commit | 253e67c8b3a72b3a4757fdbc5845297628db0a4a (patch) | |
| tree | adf53b66087aa30dfbf8bf391a1dadb044c3bf4d /static/netbsd/man3/sqlite3_db_config.3 | |
| parent | a9157ce950dfe2fc30795d43b9d79b9d1bffc48b (diff) | |
docs: Added All NetBSD Manuals
Diffstat (limited to 'static/netbsd/man3/sqlite3_db_config.3')
| -rw-r--r-- | static/netbsd/man3/sqlite3_db_config.3 | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/static/netbsd/man3/sqlite3_db_config.3 b/static/netbsd/man3/sqlite3_db_config.3 new file mode 100644 index 00000000..2383c145 --- /dev/null +++ b/static/netbsd/man3/sqlite3_db_config.3 @@ -0,0 +1,39 @@ +.Dd January 24, 2024 +.Dt SQLITE3_DB_CONFIG 3 +.Os +.Sh NAME +.Nm sqlite3_db_config +.Nd configure database connections +.Sh SYNOPSIS +.In sqlite3.h +.Ft int +.Fo sqlite3_db_config +.Fa "sqlite3*" +.Fa "int op" +.Fa "..." +.Fc +.Sh DESCRIPTION +The sqlite3_db_config() interface is used to make configuration changes +to a database connection. +The interface is similar to +.Fn sqlite3_config +except that the changes apply to a single database connection +(specified in the first argument). +.Pp +The second argument to sqlite3_db_config(D,V,...) is the configuration verb +- an integer code that indicates what aspect of the database connection +is being configured. +Subsequent arguments vary depending on the configuration verb. +.Pp +Calls to sqlite3_db_config() return SQLITE_OK if and only if the call +is considered successful. +.Sh IMPLEMENTATION NOTES +These declarations were extracted from the +interface documentation at line 1683. +.Bd -literal +SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...); +.Ed +.Sh SEE ALSO +.Xr sqlite3 3 , +.Xr sqlite3_config 3 , +.Xr SQLITE_DBCONFIG_MAINDBNAME 3 |
