SQLite C 接口
自定义页面缓存对象
typedef struct sqlite3_pcache_page sqlite3_pcache_page; struct sqlite3_pcache_page { void *pBuf; /* The content of the page */ void *pExtra; /* Extra information associated with the page */ };
sqlite3_pcache_page 对象表示页面缓存中的单个页面。页面缓存将分配该对象的实例。页面缓存的各种方法使用指向该对象实例的指针作为参数或作为它们的返回值。
有关其他信息,请参阅sqlite3_pcache_methods2。