SQLite C 接口

操作系统接口打开文件句柄

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 操作的方法。

另请参阅 对象常量函数的列表。