From: Nick Kew Date: Sat, 31 Mar 2018 21:31:18 +0000 (+0000) Subject: Add a note about prepared DBD queries to rewritemap docs. X-Git-Tag: 2.4.34~250 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e95feba5433980bf75805fba319988f91b355b1;p=apache Add a note about prepared DBD queries to rewritemap docs. PR#60440 identifies this as a gotcha git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1828122 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/rewritemap.xml b/docs/manual/rewrite/rewritemap.xml index b3bba5f25f..736e352e2b 100644 --- a/docs/manual/rewrite/rewritemap.xml +++ b/docs/manual/rewrite/rewritemap.xml @@ -443,6 +443,11 @@ RewriteMap myquery "fastdbd:SELECT destination FROM rewrite WHERE source = %s" + Note +

The query name is passed to the database driver as a label for + an SQL prepared statement, and will therefore need to follow any rules + (such as case-sensitivity) required for your database.

+
Summary