diff options
author | danielk1977 <danielk1977@noemail.net> | 2009-02-03 16:51:24 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2009-02-03 16:51:24 +0000 |
commit | 0410302e585d278cde32238360c269281b5e6717 (patch) | |
tree | 36713f5407c1536428133089bad8c1b15949aec1 /src/tclsqlite.c | |
parent | 7ed0cae237a633e9e58e349fb8481eee7ef366f0 (diff) | |
download | sqlite-0410302e585d278cde32238360c269281b5e6717.tar.gz sqlite-0410302e585d278cde32238360c269281b5e6717.zip |
Commit first version of the 'backup' feature. (CVS 6241)
FossilOrigin-Name: 663479b417fc06ba1790a544f28694f8797cee57
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 0e35f41e4..1516728d5 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -12,7 +12,7 @@ ** A TCL Interface to SQLite. Append this file to sqlite3.c and ** compile the whole thing to build a TCL-enabled version of SQLite. ** -** $Id: tclsqlite.c,v 1.234 2009/01/14 23:38:03 drh Exp $ +** $Id: tclsqlite.c,v 1.235 2009/02/03 16:51:25 danielk1977 Exp $ */ #include "tcl.h" #include <errno.h> @@ -2663,6 +2663,7 @@ int TCLSH_MAIN(int argc, char **argv){ extern int SqlitetestThread_Init(Tcl_Interp*); extern int SqlitetestOnefile_Init(); extern int SqlitetestOsinst_Init(Tcl_Interp*); + extern int Sqlitetestbackup_Init(Tcl_Interp*); Md5_Init(interp); Sqliteconfig_Init(interp); @@ -2686,6 +2687,7 @@ int TCLSH_MAIN(int argc, char **argv){ SqlitetestThread_Init(interp); SqlitetestOnefile_Init(interp); SqlitetestOsinst_Init(interp); + Sqlitetestbackup_Init(interp); #ifdef SQLITE_SSE Sqlitetestsse_Init(interp); |