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。