From 0c7b6fdb2134d8fb56b0df977a0ee27e2a9b185f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Fri, 7 Apr 2006 21:04:03 +0000 Subject: [PATCH] update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@392397 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/howto/access.html.en | 6 +++--- docs/manual/mod/mod_dbd.html.en | 13 +++++++++++++ 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/docs/manual/howto/access.html.en b/docs/manual/howto/access.html.en index ea1f0882e18..2e0eea1bb5b 100644 --- a/docs/manual/howto/access.html.en +++ b/docs/manual/howto/access.html.en @@ -72,7 +72,7 @@ discussed in this document include

- Deny from 205.252.46.165 + Deny from 10.252.46.165

Visitors coming from that address will not be able to see @@ -87,8 +87,8 @@ discussed in this document include

- Deny from 192.101.205
- Deny from cyberthugs.com moreidiots.com
+ Deny from 192.168.205
+ Deny from phishers.example.com moreidiots.example
Deny from ke

diff --git a/docs/manual/mod/mod_dbd.html.en b/docs/manual/mod/mod_dbd.html.en index ea96a475b9c..cfff92719ae 100644 --- a/docs/manual/mod/mod_dbd.html.en +++ b/docs/manual/mod/mod_dbd.html.en @@ -190,6 +190,19 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c

As required by the underlying driver. Typically this will be used to pass whatever cannot be defaulted amongst username, password, database name, hostname and port number for connection.

+

Connection string parameters for current drivers include:

+
+
MySQL
+
host, port, user, pass, dbname, sock
+
Oracle
+
user, pass, dbname, server
+
PostgreSQL
+
The connection string is passed straight through to PQconnectdb
+
SQLite2
+
The connection string is split on a colon, and part1:part2 is used as sqlite_open(part1, atoi(part2), NULL)
+
SQLite3
+
The connection string is passed straight through to sqlite3_open
+
top
-- 2.47.2