From 0b6001b201eb98a96b0bd6252edabcefeb1ddada Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sun, 29 Jan 2023 15:38:55 +0000 Subject: [PATCH] Clarify accepted values for driver names used with 'dbacquire'. PR 66334 [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1907076 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_lua.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 6ddc378f41e..3a85d6ec8c9 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -1139,7 +1139,14 @@ end

Mod_lua implements a simple database feature for querying and running commands on the most popular database engines (mySQL, PostgreSQL, FreeTDS, ODBC, SQLite, Oracle) - as well as mod_dbd. + as well as mod_dbd.

+

+ The dbType to use as the first parameter of dbacquire + is case sensitive.

+

+ It should be one of mysql, pgsql, freetds, + odbc, sqlite2, sqlite3, oracle + or mod_dbd.

The example below shows how to acquire a database handle and return information from a table:

-- 2.47.2