mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
Add information about flatfile and minor corrections
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@102746 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
75896538de
commit
11bc0866a2
1 changed files with 36 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<reference id="ref.dba">
|
||||
<title>Database (dbm-style) abstraction layer functions</title>
|
||||
<titleabbrev>dba</titleabbrev>
|
||||
|
@ -96,6 +96,24 @@
|
|||
</entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<entry><literal>cdb_make</literal></entry>
|
||||
<entry>
|
||||
Since PHP4.3 we support creation (not updating) of cdb files
|
||||
when the bundeled cdb library is used.
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<entry><literal>flatfile</literal></entry>
|
||||
<entry>
|
||||
This is available since PHP 4.3 for compatibility with the deprecated
|
||||
<link linkend="ref.db">db</link> extension only and should be avoided.
|
||||
However you may use this where files were created in this format. That
|
||||
happens when configure could not find any external library.
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
@ -175,7 +193,7 @@
|
|||
<option role="configure">--with-cdb[=DIR]</option>.
|
||||
<note>
|
||||
<para>
|
||||
Since PHP 4.3 you can omit DIR to use the internal cdb library
|
||||
Since PHP 4.3 you can omit DIR to use the bundeled cdb library
|
||||
that adds the cdb_make handler which allows creation of cdb files
|
||||
and allows to access cdb files on the network using php's streams.
|
||||
</para>
|
||||
|
@ -183,6 +201,22 @@
|
|||
</entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<entry><literal>flatfile</literal></entry>
|
||||
<entry>
|
||||
To enable support for flatfile add
|
||||
<option role="configure">--with-flatfile</option>.
|
||||
<note>
|
||||
<para>
|
||||
This was added in PHP 4.3 to add compatibility with deprecated
|
||||
<link linkend="ref.db">db</link> extension. Uee this handler only
|
||||
when you cannot install one of the libraries required by the other
|
||||
handlers and when you cannot use bundeled cdb handler.
|
||||
</para>
|
||||
</note>
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue