diff options
author | drh <drh@noemail.net> | 2002-03-06 22:01:34 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2002-03-06 22:01:34 +0000 |
commit | cd61c2816f9dad776b2aa91d2efeed9dbc856c99 (patch) | |
tree | 0215e9823c3665c340bdb0fec7aa3b873d0c07b1 /src/sqliteInt.h | |
parent | e684090012aacb4a738178c6458d9731cd3f9310 (diff) | |
download | sqlite-cd61c2816f9dad776b2aa91d2efeed9dbc856c99.tar.gz sqlite-cd61c2816f9dad776b2aa91d2efeed9dbc856c99.zip |
Added the default_cache_size and default_synchronous pragmas. Added additional
tests for pragmas. Added a new speedtest script. (CVS 421)
FossilOrigin-Name: 161c0c5f5db66815e4345c9b5f7a600c03a67475
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 3520a94e9..e404a7388 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.102 2002/03/05 01:11:14 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.103 2002/03/06 22:01:36 drh Exp $ */ #include "sqlite.h" #include "hash.h" @@ -155,6 +155,7 @@ struct sqlite { int file_format; /* What file format version is this database? */ int schema_cookie; /* Magic number that changes with the schema */ int next_cookie; /* Value of schema_cookie after commit */ + int cache_size; /* Number of pages to use in the cache */ int nTable; /* Number of tables in the database */ void *pBusyArg; /* 1st Argument to the busy callback */ int (*xBusyCallback)(void *,const char*,int); /* The busy callback */ |