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
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>
<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>