Include full name of PDO.

Switch to table layout for drivers.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@173473 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Dan Scott 2004-11-24 22:47:56 +00:00
parent 3bad8289e4
commit 924d8bf843

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.10 $ -->
<!-- $Revision: 1.11 $ -->
<!-- Generated by xml_proto.php v2.1. Found in /scripts directory of phpdoc. -->
<reference id="ref.pdo">
<title>PDO Functions</title>
@ -10,7 +10,7 @@
&reftitle.intro;
<para>
&warn.experimental;
The PDO extension defines a lightweight, consistent interface
The PHP Data Objects (PDO) extension defines a lightweight, consistent interface
for accessing databases in PHP. Each database driver that
implements the PDO interface can expose database-specific
features as regular extension functions. Note that you cannot
@ -65,38 +65,40 @@ extension=php_pdo.dll
<title>PDO Drivers</title>
<para>
The following drivers currently implement the PDO interface:
<itemizedlist>
<listitem>
<para>
PDO_FIREBIRD - Firebird/Interbase 6
</para>
</listitem>
<listitem>
<para>
PDO_MYSQL - MySQL 3.x/4.0
</para>
</listitem>
<listitem>
<para>
PDO_OCI - Oracle Call Interface
</para>
</listitem>
<listitem>
<para>
PDO_ODBC - ODBC v3 (IBM DB2 and unixODBC)
</para>
</listitem>
<listitem>
<para>
PDO_PGSQL - PostgreSQL
</para>
</listitem>
<listitem>
<para>
PDO_SQLITE - SQLite 3.x
</para>
</listitem>
</itemizedlist>
<informaltable>
<thead>
<row>
<entry>Driver name</entry>
<entry>Supported databases</entry>
</row>
</thead>
<tbody>
<row>
<entry>PDO_FIREBIRD</entry>
<entry>Firebird/Interbase 6</entry>
</row>
<row>
<entry>PDO_MYSQL</entry>
<entry>MySQL 3.x/4.0</entry>
</row>
<row>
<entry>PDO_OCI</entry>
<entry>Oracle Call Interface</entry>
</row>
<row>
<entry>PDO_ODBC</entry>
<entry>ODBC v3 (IBM DB2 and unixODBC)</entry>
</row>
<row>
<entry>PDO_PGSQL</entry>
<entry>PostgreSQL</entry>
</row>
<row>
<entry>PDO_SQLITE</entry>
<entry>SQLite 3.x</entry>
</row>
</tbody>
</informaltable>
</para>
</section>