From 6757f5c6f30f6630f728fcbd99d7ce4a50135706 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Fri, 2 Dec 2011 20:54:36 +1000 Subject: Correct the documentation for 'local' Also some general documentation cleanups and trailing white space removal. Signed-off-by: Steve Bennett --- README.sqlite | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.sqlite') 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 -- cgit v1.1