diff options
author | drh <drh@noemail.net> | 2006-01-09 17:29:52 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-01-09 17:29:52 +0000 |
commit | 2366940d8f3541692b88c9ceaedcaf3a49665ea4 (patch) | |
tree | 9665c6159e9c63c4982b2992891fb0ca929bfd53 /src/tclsqlite.c | |
parent | 14db26653ab6cc7fd24a7b4c77596e843b40bee0 (diff) | |
download | sqlite-2366940d8f3541692b88c9ceaedcaf3a49665ea4.tar.gz sqlite-2366940d8f3541692b88c9ceaedcaf3a49665ea4.zip |
Reinstate the asynchronous I/O demonstration code and tests with minor
changes. (CVS 2896)
FossilOrigin-Name: eeebc640aaeeb0ab7f730d854069f159aa41968b
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index c4b22027c..f65793428 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -11,7 +11,7 @@ ************************************************************************* ** A TCL Interface to SQLite ** -** $Id: tclsqlite.c,v 1.147 2006/01/06 14:32:20 drh Exp $ +** $Id: tclsqlite.c,v 1.148 2006/01/09 17:29:53 drh Exp $ */ #ifndef NO_TCL /* Omit this whole file if TCL is unavailable */ @@ -2153,6 +2153,7 @@ int TCLSH_MAIN(int argc, char **argv){ extern int Sqlitetest6_Init(Tcl_Interp*); extern int Md5_Init(Tcl_Interp*); extern int Sqlitetestsse_Init(Tcl_Interp*); + extern int Sqlitetestasync_Init(Tcl_Interp*); Sqlitetest1_Init(interp); Sqlitetest2_Init(interp); @@ -2160,6 +2161,7 @@ int TCLSH_MAIN(int argc, char **argv){ Sqlitetest4_Init(interp); Sqlitetest5_Init(interp); Sqlitetest6_Init(interp); + Sqlitetestasync_Init(interp); Md5_Init(interp); #ifdef SQLITE_SSE Sqlitetestsse_Init(interp); |