betz Fri Apr 26 06:44:45 2002 EDT
Modified files:
/phpdoc/en/reference/dbase reference.xml
Log:
new structure
Index: phpdoc/en/reference/dbase/reference.xml
diff -u phpdoc/en/reference/dbase/reference.xml:1.2
phpdoc/en/reference/dbase/reference.xml:1.3
--- phpdoc/en/reference/dbase/reference.xml:1.2 Mon Apr 15 14:56:31 2002
+++ phpdoc/en/reference/dbase/reference.xml Fri Apr 26 06:44:44 2002
@@ -1,34 +1,60 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<reference id="ref.dbase">
<title>dBase functions</title>
<titleabbrev>dBase</titleabbrev>
<partintro>
- <simpara>
- These functions allow you to access records stored in dBase-format
- (dbf) databases. In order to use these functions, you must compile
- PHP with the <option role="configure">--enable-dbase</option> option.
- </simpara>
- <simpara>
- There is no support for indexes or memo fields. There is no
- support for locking, too. Two concurrent webserver processes
- modifying the same dBase file will very likely ruin your database.
- </simpara>
- <simpara>
- dBase files are simple sequential files of fixed
- length records. Records are appended to the end of
- the file and delete records are kept until you call
- <function>dbase_pack</function>.
- </simpara>
- <simpara>
- We recommend that you do not use dBase files as your production
- database. Choose any real SQL server instead; MySQL or Postgres
- are common choices with PHP. dBase support is here to allow you to
- import and export data to and from your web database, because the
- file format is commonly understood by Windows spreadsheets and
- organizers.
- </simpara>
+ <section id="dbase.intro">
+ &reftitle.intro;
+ <para>
+ These functions allow you to access records stored in dBase-format
+ (dbf) databases.
+ </para>
+ <para>
+ There is no support for indexes or memo fields. There is no
+ support for locking, too. Two concurrent webserver processes
+ modifying the same dBase file will very likely ruin your database.
+ </para>
+ <para>
+ dBase files are simple sequential files of fixed
+ length records. Records are appended to the end of
+ the file and delete records are kept until you call
+ <function>dbase_pack</function>.
+ </para>
+ <para>
+ We recommend that you do not use dBase files as your production
+ database. Choose any real SQL server instead; MySQL or Postgres
+ are common choices with PHP. dBase support is here to allow you to
+ import and export data to and from your web database, because the
+ file format is commonly understood by Windows spreadsheets and
+ organizers.
+ </para>
+ </section>
+
+ <section id="dbase.installation">
+ &reftitle.install;
+ <para>
+ In order to use these functions, you must compile
+ PHP with the <option role="configure">--enable-dbase</option> option.
+ </para>
+ </section>
+
+ <section id="dbase.runtime">
+ &reftitle.runtime;
+ &no.config;
+ </section>
+
+ <section id="dbase.resources">
+ &reftitle.resources;
+ &no.resource;
+ </section>
+
+ <section id="dbase.constants">
+ &reftitle.constants;
+ &no.constants;
+ </section>
+
</partintro>
&reference.dbase.functions;