aboutsummaryrefslogtreecommitdiff
path: root/README.sqlite
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2016-02-11 10:17:47 +1000
committerSteve Bennett <steveb@workware.net.au>2016-02-11 10:17:47 +1000
commitd56bd19304e9361f125aaec93d8f6cf8b8191592 (patch)
treee94d3c60e65f8b48de7e4244f2a7fe8e02ca355b /README.sqlite
parent2fdf40d33a3d5019b05580c2d9d7d69392188e2b (diff)
downloadjimtcl-d56bd19304e9361f125aaec93d8f6cf8b8191592.zip
jimtcl-d56bd19304e9361f125aaec93d8f6cf8b8191592.tar.gz
jimtcl-d56bd19304e9361f125aaec93d8f6cf8b8191592.tar.bz2
docs: fix more typos
Some identified by frgm Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'README.sqlite')
-rw-r--r--README.sqlite6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.sqlite b/README.sqlite
index dde7de5..9fb8348 100644
--- a/README.sqlite
+++ b/README.sqlite
@@ -39,7 +39,7 @@ The query method has the following signature:
The sql query may contain occurrences of "%s" that are substituted
in the actual query with the following arguments, quoted in order
-to make sure that the query is correct even if this arguments contain
+to make sure that the query is correct even if these arguments contain
"'" characters. So for example it is possible to write:
. $db query "SELECT * from tbl1 WHERE one='%s'" hello!
@@ -120,7 +120,7 @@ the NULL value as a different string:
. $db query -null <<NULL>> "SELECT * from tbl1"
{one hello! two 10} {one goodbye two 20} {one <<NULL>> two 30}
-This way if the emtpy string has some semantical value for your
+This way if the empty string has some semantical value for your
dataset you can change it.
Finding the ID of the last inserted row
@@ -135,7 +135,7 @@ Number of rows changed by the most recent query
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This is also very simple, there is just to use the 'changes' method
-without arugments.
+without arguments.
. $db changes
5