小巧、快速、可靠。
三者擇其三。

SQLite C 介面

自訂頁面快取物件 (Custom Page Cache Object)

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

另請參閱 物件常數函式 列表。