- added new function to list of table which compares the two apis

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@210412 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Uwe Steinmann 2006-03-30 15:55:05 +00:00
parent d23e009219
commit dd7948d5ff

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<!-- Author: Uwe Steinmann <steinm@php.net> -->
<!-- Purpose: database.vendors -->
<!-- Membership: pecl, external -->
@ -13,16 +13,12 @@
&reftitle.intro;
&warn.experimental;
<para>
This module allows to read Paradox database and primary index files. It
has initial support for creating Paradox databases. Consider it to be
experimental due to lack of documentation of the Paradox file format.
This module allows to read and write Paradox databases, primary index
files and blob files. Write support has been proven to be quite reliable,
though due to lack of documentation the produced files may not in
any case be readable by other applications. Encrypted databases can
be read without specifying a password if pxlib &gt;= 0.5.0 is used.
</para>
<note>
<para>
This module has not been tested on other platforms than Debian/GNU Linux
for PPC.
</para>
</note>
<note>
<para>
This module is also in development and may change, though I don't expect
@ -34,8 +30,10 @@
<section id="paradox.requirements">
&reftitle.required;
<para>
You need at least PHP 5.0.0 and libpx &gt;= 0.1.9. The paradox library
(libpx) is available at
You need at least PHP 5.0.0 and pxlib &gt;= 0.4.4 for the basic set
of functions. Some never functions are only available with pxlib &gt;=
0.6.0. Reading and writing of encryted databases requires at least
pxlib &gt;= 0.5.0. The paradox library (pxlib) is available at
<ulink url="&url.paradox.pxlib;">&url.paradox.pxlib;</ulink>.
</para>
</section>
@ -101,6 +99,22 @@
<entry><function>put_record</function></entry>
<entry><function>px_put_record</function></entry>
</row>
<row>
<entry><function>retrieve_record</function></entry>
<entry><function>px_retrieve_record</function></entry>
</row>
<row>
<entry><function>delete_record</function></entry>
<entry><function>px_delete_record</function></entry>
</row>
<row>
<entry><function>insert_record</function></entry>
<entry><function>px_insert_record</function></entry>
</row>
<row>
<entry><function>update_record</function></entry>
<entry><function>px_update_record</function></entry>
</row>
<row>
<entry><function>get_field</function></entry>
<entry><function>px_get_field</function></entry>
@ -145,6 +159,10 @@
<entry><function>set_blob_file</function></entry>
<entry><function>px_set_blob_file</function></entry>
</row>
<row>
<entry><function>date2string</function></entry>
<entry><function>px_date2string</function></entry>
</row>
<row>
<entry><function>timestamp2string</function></entry>
<entry><function>px_timestamp2string</function></entry>