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 。
另请参见对象,常量和函数的列表。
SQLite is in the Public Domain.
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com