vrana Wed Apr 26 12:21:33 2006 UTC
Modified files:
/phpdoc/en/reference/pdo configure.xml
Log:
Tell about PDO_SQLITE and SQLite (bug #37112)
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/pdo/configure.xml?r1=1.1&r2=1.2&diff_format=u
Index: phpdoc/en/reference/pdo/configure.xml
diff -u phpdoc/en/reference/pdo/configure.xml:1.1
phpdoc/en/reference/pdo/configure.xml:1.2
--- phpdoc/en/reference/pdo/configure.xml:1.1 Wed Apr 26 12:20:23 2006
+++ phpdoc/en/reference/pdo/configure.xml Wed Apr 26 12:21:33 2006
@@ -1,10 +1,13 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- $Revision: 1.2 $ -->
<section id="pdo.installation">
&reftitle.install;
<procedure id='pdo.install.unix51up'>
<title>PHP 5.1 and up on Unix systems</title>
<step>
<para>
- If you're running a PHP 5.1 release, PDO is included in the distribution;
+ If you're running a PHP 5.1 release, PDO and <link
+ linkend="ref.pdo-sqlite">PDO_SQLITE</link> is included in the distribution;
it will be automatically enabled when you run configure. It is
recommended that you build PDO as a shared extension, as this will allow
you to take advantage of updates that are made available via PECL. The
@@ -15,6 +18,8 @@
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.
+ SQLite extension depends on PDO so if PDO is built as a shared extension,
+ SQLite needs to be built the same way.
<screen>
<![CDATA[
./configure --with-zlib --enable-pdo=shared --with-pdo-sqlite=shared
--with-sqlite=shared
@@ -34,8 +39,6 @@
<screen>
<![CDATA[
extension=pdo.so
-extension=pdo_sqlite.so
-extension=sqlite.so
]]>
</screen>
</para>
@@ -134,3 +137,25 @@
</step>
</procedure>
</section>
+
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"../../../manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->