예제 #1
0
/* 
** Discard the contents of the cache.
*/
SQLITE_PRIVATE void sqlite3PcacheClear(PCache *pCache){
  sqlite3PcacheTruncate(pCache, 0);
}
예제 #2
0
/* 
** Discard the contents of the cache.
*/
void sqlite3PcacheClear(PCache *pCache){
  sqlite3PcacheTruncate(pCache, 0);
}
예제 #3
0
/* 
** Discard the contents of the cache.
*/
int sqlite3PcacheClear(PCache *pCache){
  sqlite3PcacheTruncate(pCache, 0);
  return SQLITE_OK;
}