diff options
author | Daniel Gruno <humbedooh@apache.org> | 2013-04-13 08:49:39 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2013-04-13 08:49:39 +0200 |
commit | 5ae71d6a813227cd88c1949b0f9b454b38dc209b (patch) | |
tree | d4bc3ad7befd94868c1fad3430bba625291c2818 /docs/manual/mod/mod_lua.xml | |
parent | xforms (diff) | |
download | apache2-5ae71d6a813227cd88c1949b0f9b454b38dc209b.tar.xz apache2-5ae71d6a813227cd88c1949b0f9b454b38dc209b.zip |
whitespace/escape fix
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1467562 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_lua.xml')
-rw-r--r-- | docs/manual/mod/mod_lua.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index db6027a243..4b662dcb4e 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -1018,7 +1018,7 @@ local result, errmsg = database:select(r, "SELECT * FROM `people` WHERE 1") -- Create and run a prepared statement: local statement, errmsg = database:prepare(r, "DELETE FROM `tbl` WHERE `age` > %u") if not errmsg then - local result, errmsg = statement:query(20) -- run the statement with age >20 + local result, errmsg = statement:query(20) -- run the statement with age > 20 end -- Fetch a prepared statement from a DBDPrepareSQL directive: |