You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2006/04/07 23:04:05 UTC

svn commit: r392397 - in /httpd/httpd/branches/2.2.x/docs/manual: howto/access.html.en mod/mod_dbd.html.en

Author: nd
Date: Fri Apr  7 14:04:03 2006
New Revision: 392397

URL: http://svn.apache.org/viewcvs?rev=392397&view=rev
Log:
update transformation

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/howto/access.html.en
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_dbd.html.en

Modified: httpd/httpd/branches/2.2.x/docs/manual/howto/access.html.en
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/docs/manual/howto/access.html.en?rev=392397&r1=392396&r2=392397&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/howto/access.html.en (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/howto/access.html.en Fri Apr  7 14:04:03 2006
@@ -72,7 +72,7 @@
     following:</p>
 
     <div class="example"><p><code>
-      Deny from 205.252.46.165
+      Deny from 10.252.46.165
     </code></p></div>
 
     <p>Visitors coming from that address will not be able to see
@@ -87,8 +87,8 @@
     you can specify just part of an address or domain name:</p>
 
     <div class="example"><p><code>
-      Deny from <var>192.101.205</var><br />
-      Deny from <var>cyberthugs.com</var> <var>moreidiots.com</var><br />
+      Deny from <var>192.168.205</var><br />
+      Deny from <var>phishers.example.com</var> <var>moreidiots.example</var><br />
       Deny from ke
     </code></p></div>
 

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_dbd.html.en
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_dbd.html.en?rev=392397&r1=392396&r2=392397&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_dbd.html.en (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_dbd.html.en Fri Apr  7 14:04:03 2006
@@ -190,6 +190,19 @@
     <p>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.</p>
+    <p>Connection string parameters for current drivers include:</p>
+    <dl>
+    <dt>MySQL</dt>
+    <dd>host, port, user, pass, dbname, sock</dd> 
+    <dt>Oracle</dt>
+    <dd>user, pass, dbname, server</dd> 
+    <dt>PostgreSQL</dt>
+    <dd>The connection string is passed straight through to <code>PQconnectdb</code></dd>
+    <dt>SQLite2</dt>
+    <dd>The connection string is split on a colon, and <code>part1:part2</code> is used as <code>sqlite_open(part1, atoi(part2), NULL)</code></dd>
+    <dt>SQLite3</dt>
+    <dd>The connection string is passed straight through to <code>sqlite3_open</code></dd>
+    </dl>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>