首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Custom Page Cache Object

代码语言:javascript
复制
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 。

另请参见对象,常量和函数的列表。

代码语言:txt
复制
 SQLite is in the Public Domain.

扫码关注腾讯云开发者

领取腾讯云代金券