diff options
author | drh <drh@noemail.net> | 2012-01-13 16:16:10 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2012-01-13 16:16:10 +0000 |
commit | 68bd4aa21dfc1062dca896d84aa829f6e304f3ae (patch) | |
tree | 83f1bee1ce56adca1181037f7fa0a41a47155111 /src/tclsqlite.c | |
parent | 065dfe692af57c45b7c0212fc142c6cd3350b80e (diff) | |
download | sqlite-68bd4aa21dfc1062dca896d84aa829f6e304f3ae.tar.gz sqlite-68bd4aa21dfc1062dca896d84aa829f6e304f3ae.zip |
Add the -uri option to the usage comment that is printed by the "sqlite3"
TCL command when an unknown command-line option is supplied.
FossilOrigin-Name: 7987e285786161b1513ab77694d79e95fc76b0e5
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 3692bef9c..967b1a004 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -3017,7 +3017,7 @@ static int DbMain(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){ if( objc<3 || (objc&1)!=1 ){ Tcl_WrongNumArgs(interp, 1, objv, "HANDLE FILENAME ?-vfs VFSNAME? ?-readonly BOOLEAN? ?-create BOOLEAN?" - " ?-nomutex BOOLEAN? ?-fullmutex BOOLEAN?" + " ?-nomutex BOOLEAN? ?-fullmutex BOOLEAN? ?-uri BOOLEAN?" #ifdef SQLITE_HAS_CODEC " ?-key CODECKEY?" #endif |