aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2001-07-23 14:33:02 +0000
committerdrh <drh@noemail.net>2001-07-23 14:33:02 +0000
commit87c40e88a09ec61316761210781c7f1abe7d264d (patch)
treeae71d4d86ad961c6f9429d3aa8e73fed39de1f02 /src/tclsqlite.c
parent6019e168a08db4ecdc712d04a7caa950c0045d03 (diff)
downloadsqlite-87c40e88a09ec61316761210781c7f1abe7d264d.tar.gz
sqlite-87c40e88a09ec61316761210781c7f1abe7d264d.zip
Add ability to quote table and column names in expression. (CVS 235)
FossilOrigin-Name: 029e3a3a5dd8d4923af50bb2c9f31b1b7cd9439e
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r--src/tclsqlite.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c
index a663f46ff..95ae3c5c8 100644
--- a/src/tclsqlite.c
+++ b/src/tclsqlite.c
@@ -23,7 +23,7 @@
*************************************************************************
** A TCL Interface to SQLite
**
-** $Id: tclsqlite.c,v 1.20 2001/07/01 22:12:02 drh Exp $
+** $Id: tclsqlite.c,v 1.21 2001/07/23 14:33:04 drh Exp $
*/
#ifndef NO_TCL /* Omit this whole file if TCL is unavailable */
@@ -510,12 +510,8 @@ int TCLSH_MAIN(int argc, char **argv){
#ifdef SQLITE_TEST
{
extern int Sqlitetest1_Init(Tcl_Interp*);
- extern int Sqlitetest2_Init(Tcl_Interp*);
- extern int Sqlitetest3_Init(Tcl_Interp*);
extern int Md5_Init(Tcl_Interp*);
Sqlitetest1_Init(interp);
- Sqlitetest2_Init(interp);
- Sqlitetest3_Init(interp);
Md5_Init(interp);
}
#endif