dbs Wed Nov 24 17:47:56 2004 EDT
Modified files:
/phpdoc/en/reference/pdo reference.xml
Log:
Include full name of PDO.
Switch to table layout for drivers.
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo/reference.xml?r1=1.10&r2=1.11&ty=u
Index: phpdoc/en/reference/pdo/reference.xml
diff -u phpdoc/en/reference/pdo/reference.xml:1.10
phpdoc/en/reference/pdo/reference.xml:1.11
--- phpdoc/en/reference/pdo/reference.xml:1.10 Fri Nov 19 14:02:31 2004
+++ phpdoc/en/reference/pdo/reference.xml Wed Nov 24 17:47:56 2004
@@ -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 @@
<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>