diff options
author | drh <drh@noemail.net> | 2007-06-19 17:48:57 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-06-19 17:48:57 +0000 |
commit | 59fffd02de811cecd9146a79c5fec3fb4e0d87f8 (patch) | |
tree | 20dcdf9a6b2b4e23e6a35b0b5e05365aa08ebbd2 /src/tclsqlite.c | |
parent | 4f5e80f94bf58a86b0c7e29b5c2a744ac3156668 (diff) | |
download | sqlite-59fffd02de811cecd9146a79c5fec3fb4e0d87f8.tar.gz sqlite-59fffd02de811cecd9146a79c5fec3fb4e0d87f8.zip |
Cleanup the TCL interface source code and add documentation for recently
added methods on the SQLite object of TCL. (CVS 4093)
FossilOrigin-Name: d88b79818a6a9e0413b9560687ec3c79fcb3dacc
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 4eb131970..49fd776e6 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.190 2007/06/19 17:15:47 drh Exp $ +** $Id: tclsqlite.c,v 1.191 2007/06/19 17:48:57 drh Exp $ */ #include "tcl.h" #include <errno.h> @@ -910,12 +910,12 @@ static int DbObjCmd(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){ "collation_needed", "commit_hook", "complete", "copy", "enable_load_extension","errorcode", "eval", "exists", "function", - "incrblob", - "interrupt", "last_insert_rowid", "nullvalue", - "onecolumn", "profile", "progress", - "rekey", "rollback_hook", "timeout", - "total_changes", "trace", "transaction", - "update_hook", "version", 0 + "incrblob", "interrupt", "last_insert_rowid", + "nullvalue", "onecolumn", "profile", + "progress", "rekey", "rollback_hook", + "timeout", "total_changes", "trace", + "transaction", "update_hook", "version", + 0 }; enum DB_enum { DB_AUTHORIZER, DB_BUSY, DB_CACHE, @@ -923,12 +923,11 @@ static int DbObjCmd(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){ DB_COLLATION_NEEDED, DB_COMMIT_HOOK, DB_COMPLETE, DB_COPY, DB_ENABLE_LOAD_EXTENSION,DB_ERRORCODE, DB_EVAL, DB_EXISTS, DB_FUNCTION, - DB_INCRBLOB, - DB_INTERRUPT, DB_LAST_INSERT_ROWID,DB_NULLVALUE, - DB_ONECOLUMN, DB_PROFILE, DB_PROGRESS, - DB_REKEY, DB_ROLLBACK_HOOK, DB_TIMEOUT, - DB_TOTAL_CHANGES, DB_TRACE, DB_TRANSACTION, - DB_UPDATE_HOOK, DB_VERSION, + DB_INCRBLOB, DB_INTERRUPT, DB_LAST_INSERT_ROWID, + DB_NULLVALUE, DB_ONECOLUMN, DB_PROFILE, + DB_PROGRESS, DB_REKEY, DB_ROLLBACK_HOOK, + DB_TIMEOUT, DB_TOTAL_CHANGES, DB_TRACE, + DB_TRANSACTION, DB_UPDATE_HOOK, DB_VERSION }; /* don't leave trailing commas on DB_enum, it confuses the AIX xlc compiler */ |