aboutsummaryrefslogtreecommitdiff
path: root/README.sqlite
diff options
context:
space:
mode:
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