vrana Thu Jan 5 09:21:37 2006 UTC
Modified files: /phpdoc/en/reference/sqlite reference.xml Log: Since PHP 5.1 needs PDO SQLite 3 http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/sqlite/reference.xml?r1=1.20&r2=1.21&diff_format=u Index: phpdoc/en/reference/sqlite/reference.xml diff -u phpdoc/en/reference/sqlite/reference.xml:1.20 phpdoc/en/reference/sqlite/reference.xml:1.21 --- phpdoc/en/reference/sqlite/reference.xml:1.20 Sun Sep 25 09:57:27 2005 +++ phpdoc/en/reference/sqlite/reference.xml Thu Jan 5 09:21:36 2006 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.20 $ --> +<!-- $Revision: 1.21 $ --> <!-- Purpose: database.vendors --> <!-- Membership: bundled --> @@ -45,8 +45,21 @@ In PHP 5, the SQLite extension and the engine itself are bundled and compiled by default. However, since PHP 5.1.0 you need to manually activate the extension in &php.ini; (because it is now bundled as - shared), by adding the following line: - <literal>php_extension=php_sqlite.dll</literal>. + shared). Moreover, since PHP 5.1.0 SQLite depends on <link + linkend="ref.pdo">PDO</link> so it must be enabled too, by adding the + following lines to &php.ini; (in order): + <informalexample> + <programlisting role="ini"> +<![CDATA[ +php_extension=php_pdo.dll +php_extension=php_sqlite.dll +]]> + </programlisting> + </informalexample> + </para> + <para> + SQLite 3 is supported through <link + linkend="ref.pdo-sqlite">PDO SQLite</link>. </para> <note> <title>Windows installation for unprivileged accounts</title>