aboutsummaryrefslogtreecommitdiff
path: root/README.sqlite
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2011-12-02 20:54:36 +1000
committerSteve Bennett <steveb@workware.net.au>2011-12-02 20:56:48 +1000
commit6757f5c6f30f6630f728fcbd99d7ce4a50135706 (patch)
treead47403fc3f50ff18deb26a836223d9b215eaa0e /README.sqlite
parent21d7fc318bcda4c718d32dc82e1249e4861cc5f9 (diff)
downloadjimtcl-6757f5c6f30f6630f728fcbd99d7ce4a50135706.zip
jimtcl-6757f5c6f30f6630f728fcbd99d7ce4a50135706.tar.gz
jimtcl-6757f5c6f30f6630f728fcbd99d7ce4a50135706.tar.bz2
Correct the documentation for 'local'
Also some general documentation cleanups and trailing white space removal. Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'README.sqlite')
-rw-r--r--README.sqlite4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.sqlite b/README.sqlite
index 4346d25..cc4761d 100644
--- a/README.sqlite
+++ b/README.sqlite
@@ -24,7 +24,7 @@ can be used to perform operations on the database. A real example:
. set db [sqlite.open test.db]
sqlite.handle0
- . $db query "SELECT * from tbl1"
+ . $db query "SELECT * from tbl1"
{one hello! two 10} {one goodbye two 20}
In the second line the handle is used as a command name, followed
@@ -64,7 +64,7 @@ Specification of query results
In one of the above examples, the following query was used:
- . $db query "SELECT * from tbl1"
+ . $db query "SELECT * from tbl1"
{one hello! two 10} {one goodbye two 20}
As you can see the result of a query is a list of lists. Every