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操作的方法。
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com