From 5ae71d6a813227cd88c1949b0f9b454b38dc209b Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Sat, 13 Apr 2013 06:49:39 +0000 Subject: [PATCH] whitespace/escape fix git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1467562 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_lua.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.40.0