git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@147247 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Marcus Boerger 2003-12-23 11:32:31 +00:00
parent b4d08dab75
commit fd70bee799
3 changed files with 53 additions and 3 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.8 $ -->
<!-- $Revision: 1.9 $ -->
<section id="dba.installation">
&reftitle.install;
<para>
@ -24,6 +24,13 @@
<entry>
To enable support for dbm add
<option role="configure">--with-dbm[=DIR]</option>.
<note>
<para>
dbm normally is a wrapper which often results in failures.
This means you should only use dbm if you are sure it works
and if you really need this format.
</para>
</note>
</entry>
</row>
@ -32,6 +39,13 @@
<entry>
To enable support for ndbm add
<option role="configure">--with-ndbm[=DIR]</option>.
<note>
<para>
ndbm normally is a wrapper which often results in failures.
This means you should only use ndbm if you are sure it works
and if you really need this format.
</para>
</note>
</entry>
</row>
@ -135,6 +149,26 @@
</note>
</entry>
</row>
<row>
<entry><literal>qdbm</literal></entry>
<entry>
To enable support for qdbm add
<option role="configure">--with-qdbm[=DIR]</option>.
<note>
<para>
qdbm conflicts with dbm and gdbm.
</para>
</note>
<note>
<para>
This was added in PHP 5.0.0. The qdbm library can be loaded from
<ulink url="http://qdbm.sourceforge.net">http://qdbm.sourceforge.net</ulink>.
</para>
</note>
</entry>
</row>
</tbody>
</tgroup>
</table>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.9 $ -->
<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/dba.xml, last change in rev 1.2 -->
<refentry id="function.dba-open">
<refnamediv>
@ -154,6 +154,14 @@
GDBM. See <link linkend="ref.sem">System V semaphore support</link>.
</para>
</note>
<note>
<para>
Up to PHP 4.3.5 open mode 'c' is broken for several internal handlers and
truncates the database instead of appending data to an existant database.
Also dbm and ndbm fail on mode 'c' in typical configurations (this cannot
be fixed).
</para>
</note>
<para>
See also:
<function>dba_popen</function>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.17 $ -->
<!-- $Revision: 1.18 $ -->
<reference id="ref.dba">
<title>Database (dbm-style) abstraction layer functions</title>
<titleabbrev>dba</titleabbrev>
@ -136,6 +136,14 @@
</entry>
</row>
<row>
<entry><literal>qdbm</literal></entry>
<entry>
This is available since PHP 5.0.0. The qdbm library can be loaded from
<ulink url="http://qdbm.sourceforge.net">http://qdbm.sourceforge.net</ulink>.
</entry>
</row>
</tbody>
</tgroup>
</table>