WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
sqlite3_pcache_methods Struct Reference

Public Attributes

void * pArg
 
int(* xInit )(void *)
 
void(* xShutdown )(void *)
 
sqlite3_pcache *(* xCreate )(int szPage, int bPurgeable)
 
void(* xCachesize )(sqlite3_pcache *, int nCachesize)
 
int(* xPagecount )(sqlite3_pcache *)
 
void *(* xFetch )(sqlite3_pcache *, unsigned key, int createFlag)
 
void(* xUnpin )(sqlite3_pcache *, void *, int discard)
 
void(* xRekey )(sqlite3_pcache *, void *, unsigned oldKey, unsigned newKey)
 
void(* xTruncate )(sqlite3_pcache *, unsigned iLimit)
 
void(* xDestroy )(sqlite3_pcache *)
 

Detailed Description

Definition at line 9144 of file sqlite3.h.

Member Data Documentation

◆ pArg

void* sqlite3_pcache_methods::pArg

Definition at line 9145 of file sqlite3.h.

◆ xCachesize

void(* sqlite3_pcache_methods::xCachesize) (sqlite3_pcache *, int nCachesize)

Definition at line 9149 of file sqlite3.h.

◆ xCreate

sqlite3_pcache *(* sqlite3_pcache_methods::xCreate) (int szPage, int bPurgeable)

Definition at line 9148 of file sqlite3.h.

◆ xDestroy

void(* sqlite3_pcache_methods::xDestroy) (sqlite3_pcache *)

Definition at line 9155 of file sqlite3.h.

◆ xFetch

void *(* sqlite3_pcache_methods::xFetch) (sqlite3_pcache *, unsigned key, int createFlag)

Definition at line 9151 of file sqlite3.h.

◆ xInit

int(* sqlite3_pcache_methods::xInit) (void *)

Definition at line 9146 of file sqlite3.h.

◆ xPagecount

int(* sqlite3_pcache_methods::xPagecount) (sqlite3_pcache *)

Definition at line 9150 of file sqlite3.h.

◆ xRekey

void(* sqlite3_pcache_methods::xRekey) (sqlite3_pcache *, void *, unsigned oldKey, unsigned newKey)

Definition at line 9153 of file sqlite3.h.

◆ xShutdown

void(* sqlite3_pcache_methods::xShutdown) (void *)

Definition at line 9147 of file sqlite3.h.

◆ xTruncate

void(* sqlite3_pcache_methods::xTruncate) (sqlite3_pcache *, unsigned iLimit)

Definition at line 9154 of file sqlite3.h.

◆ xUnpin

void(* sqlite3_pcache_methods::xUnpin) (sqlite3_pcache *, void *, int discard)

Definition at line 9152 of file sqlite3.h.


The documentation for this struct was generated from the following file: