xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_file.3 (revision cef8759bd76c1b621f8eab8faa6f208faabc2e15)
1.Dd December 19, 2018
2.Dt SQLITE3_FILE 3
3.Os
4.Sh NAME
5.Nm sqlite3_file ,
6.Nm sqlite3_file
7.Nd OS Interface Open File Handle
8.Sh SYNOPSIS
9.Vt typedef struct sqlite3_file sqlite3_file;
10.Vt struct sqlite3_file ;
11.Sh DESCRIPTION
12An sqlite3_file object represents an open file in the  OS interface layer.
13Individual OS interface implementations will want to subclass this
14object by appending additional fields for their own use.
15The pMethods entry is a pointer to an sqlite3_io_methods
16object that defines methods for performing I/O operations on the open
17file.
18.Sh SEE ALSO
19.Xr sqlite3_file 3 ,
20.Xr sqlite3_io_methods 3 ,
21.Xr sqlite3_vfs 3
22