在线文档教程
Sqlite
C界面 | C Interface

OS Interface Open File Handle

OS Interface Open File Handle

typedef struct sqlite3_file sqlite3_file; struct sqlite3_file { const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ };

sqlite3_file对象表示OS界面层中的打开文件。单独的操作系统接口实现将希望通过为其自己的附加附加字段来为该对象创建子类。pMethods条目是指向sqlite3_io_methods对象的指针,该对象定义了在打开的文件上执行I / O操作的方法。