Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions reference/pdo/configure.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,22 @@ extension=pdo
<step>
<para>
PDO is enabled by default.
Choose the other database-specific DLL files and either use
<function>dl</function> to load them at runtime, or enable them in
&php.ini;. For example, this loads the
Enable the database-specific drivers in &php.ini; as needed.
For example, this loads the
<link linkend="ref.pdo-sqlite">PDO_SQLITE</link> driver but
leaves the <link linkend="ref.pdo-odbc">PDO_ODBC</link> driver commented out:
leaves the <link linkend="ref.pdo-odbc">PDO_ODBC</link> driver
commented out:
<screen>
<![CDATA[
;extension=pdo_odbc
extension=pdo_sqlite
]]>
</screen>
</para>
<para>
These DLLs should exist in the system's
<simpara>
The corresponding extension files should exist in the
<link linkend="ini.extension-dir">extension_dir</link>.
</para>
</simpara>
</step>
</procedure>
<note>
Expand Down