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。