diff options
Diffstat (limited to 'static/netbsd/man3/sqlite3_pcache.3')
| -rw-r--r-- | static/netbsd/man3/sqlite3_pcache.3 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/static/netbsd/man3/sqlite3_pcache.3 b/static/netbsd/man3/sqlite3_pcache.3 new file mode 100644 index 00000000..c07f09cb --- /dev/null +++ b/static/netbsd/man3/sqlite3_pcache.3 @@ -0,0 +1,25 @@ +.Dd January 24, 2024 +.Dt SQLITE3_PCACHE 3 +.Os +.Sh NAME +.Nm sqlite3_pcache +.Nd custom page cache object +.Sh SYNOPSIS +.In sqlite3.h +.Vt typedef struct sqlite3_pcache sqlite3_pcache; +.Sh DESCRIPTION +The sqlite3_pcache type is opaque. +It is implemented by the pluggable module. +The SQLite core has no knowledge of its size or internal structure +and never deals with the sqlite3_pcache object except by holding and +passing pointers to the object. +.Pp +See sqlite3_pcache_methods2 for additional information. +.Sh IMPLEMENTATION NOTES +These declarations were extracted from the +interface documentation at line 8880. +.Bd -literal +typedef struct sqlite3_pcache sqlite3_pcache; +.Ed +.Sh SEE ALSO +.Xr sqlite3_pcache_methods2 3 |
