diff options
author | danielk1977 <danielk1977@noemail.net> | 2005-01-24 10:25:59 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2005-01-24 10:25:59 +0000 |
commit | a21c6b6fe0416aa43ef95e28f9ca7ebd59400708 (patch) | |
tree | 86a9df9e7c8b46dfa1e578bbb06e450d3795f521 /src/tclsqlite.c | |
parent | d5a71b5de3803c82c8cb4454c9339a0997893442 (diff) | |
download | sqlite-a21c6b6fe0416aa43ef95e28f9ca7ebd59400708.tar.gz sqlite-a21c6b6fe0416aa43ef95e28f9ca7ebd59400708.zip |
Modifications and bugfixes so that the test suite passes with the TCL statement cache turned on. (CVS 2271)
FossilOrigin-Name: d5233e0747789dea04d35a8350b408321d23a64d
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 177ad4066..dc05eab0a 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -11,7 +11,7 @@ ************************************************************************* ** A TCL Interface to SQLite ** -** $Id: tclsqlite.c,v 1.116 2005/01/24 00:28:43 drh Exp $ +** $Id: tclsqlite.c,v 1.117 2005/01/24 10:25:59 danielk1977 Exp $ */ #ifndef NO_TCL /* Omit this whole file if TCL is unavailable */ @@ -22,7 +22,7 @@ #include <string.h> #include <assert.h> -#define NUM_PREPARED_STMTS 0 +#define NUM_PREPARED_STMTS 10 #define MAX_PREPARED_STMTS 100 /* |