mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-29 07:18:55 +00:00

- Moved the intro from reference.xml to book.xml - Change the intro ID to intro.<extname> - Moved examples into its own chapter - (Note: the first example ID was changed to "dba.example" And the example chapter got the ID "dba.examples" - Moved the setup sections to setup.xml - Added empty constants <appendix> git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@248347 c90b9560-bf6c-de11-be94-00142212c4b1
54 lines
1.4 KiB
XML
54 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision: 1.2 $ -->
|
|
<!-- Purpose: database.abstract -->
|
|
<!-- Membership: bundled -->
|
|
|
|
<book xml:id="book.dba" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<title>Database (dbm-style) Abstraction Layer</title>
|
|
|
|
<!-- {{{ preface -->
|
|
<preface xml:id="intro.dba">
|
|
&reftitle.intro;
|
|
<para>
|
|
These functions build the foundation for accessing Berkeley DB
|
|
style databases.
|
|
</para>
|
|
<para>
|
|
This is a general abstraction layer for several file-based databases.
|
|
As such, functionality is limited to a common subset of features
|
|
supported by modern databases such as
|
|
<link xlink:href="&url.sleepycat;">Sleepycat Software's DB2</link>.
|
|
(This is not to be confused with IBM's DB2 software, which is
|
|
supported through the <link linkend="ref.uodbc">ODBC functions</link>.)
|
|
</para>
|
|
</preface>
|
|
<!-- }}} -->
|
|
|
|
&reference.dba.setup;
|
|
&reference.dba.constants;
|
|
&reference.dba.examples;
|
|
&reference.dba.reference;
|
|
|
|
</book>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|
|
|