dbs Mon Jan 16 00:53:32 2006 UTC
Modified files:
/phpdoc/en/reference/pdo reference.xml
Log:
Bug 35432: Note that if PDO is shared, all drivers must be shared.
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/pdo/reference.xml?r1=1.48&r2=1.49&diff_format=u
Index: phpdoc/en/reference/pdo/reference.xml
diff -u phpdoc/en/reference/pdo/reference.xml:1.48
phpdoc/en/reference/pdo/reference.xml:1.49
--- phpdoc/en/reference/pdo/reference.xml:1.48 Wed Dec 14 14:50:58 2005
+++ phpdoc/en/reference/pdo/reference.xml Mon Jan 16 00:53:32 2006
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.48 $ -->
+<!-- $Revision: 1.49 $ -->
<!-- Purpose: database.abstract -->
<!-- Membership: pecl, bundled -->
@@ -47,7 +47,9 @@
enable zlib support (for the pear installer) as well. You may also need
to enable the PDO driver for your database of choice; consult the
documentation for <link linkend="pdo.drivers">database-specific
- PDO drivers</link> to find out more about that.
+ PDO drivers</link> to find out more about that, but note that if you
+ build PDO as a shared extension, you must build the PDO drivers as
+ shared extensions.
<screen>
<![CDATA[
./configure --with-zlib --enable-pdo=shared
@@ -61,8 +63,9 @@
so that the PDO extension will be loaded automatically when PHP runs.
You will also need to enable any database specific drivers there too;
make sure that they are listed after the pdo.so line, as PDO must be
- initialized before the database specific extensions can be loaded.
- If you built the extensions statically, you can skip this step.
+ initialized before the database-specific extensions can be loaded.
+ If you built PDO and the database-specific extensions statically, you
+ can skip this step.
<screen>
<![CDATA[
extension=pdo.so