mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
#35432: If PDO is built as shared, SQLite must be shared.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@205360 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
b8c12f202a
commit
2bc54384f0
1 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.22 $ -->
|
||||
<!-- $Revision: 1.23 $ -->
|
||||
<!-- Purpose: database.vendors -->
|
||||
<!-- Membership: bundled -->
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
|||
<title>Installation</title>
|
||||
<para>
|
||||
Read the INSTALL file, which comes with the package. Or just use the PEAR
|
||||
installer with "pear install sqlite".
|
||||
installer with <command>pear install sqlite</command>.
|
||||
SQLite itself is already included, You do not need to install
|
||||
any additional software.
|
||||
</para>
|
||||
|
@ -46,7 +46,7 @@
|
|||
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). Moreover, since PHP 5.1.0 SQLite depends on <link
|
||||
linkend="ref.pdo">PDO</link> so it must be enabled too, by adding the
|
||||
linkend="ref.pdo">PDO</link> it must be enabled too, by adding the
|
||||
following lines to &php.ini; (in order):
|
||||
<informalexample>
|
||||
<programlisting role="ini">
|
||||
|
@ -56,6 +56,9 @@ extension=php_sqlite.dll
|
|||
]]>
|
||||
</programlisting>
|
||||
</informalexample>
|
||||
On Linux or Unix operating systems, if you build PDO as a shared
|
||||
extension, you must build SQLite as a shared extension using the
|
||||
<command>--with-sqlite=shared</command> configure option.
|
||||
</para>
|
||||
<para>
|
||||
SQLite 3 is supported through <link
|
||||
|
|
Loading…
Reference in a new issue