docbook docs: changing features section headings into headers, and fixing the example
This commit is contained in:
parent
8df53a91ce
commit
d4405bb99c
@ -88,7 +88,7 @@
|
|||||||
|
|
||||||
// create a new user
|
// create a new user
|
||||||
$user = new User();
|
$user = new User();
|
||||||
$user->username = "Pookey";
|
$user->username = "pookey";
|
||||||
$user->password = "a password!";
|
$user->password = "a password!";
|
||||||
$user->created = time();
|
$user->created = time();
|
||||||
|
|
||||||
@ -151,12 +151,14 @@
|
|||||||
<listitem>LIMIT / OFFSET emulation </listitem>
|
<listitem>LIMIT / OFFSET emulation </listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
<para>
|
<sect3 id="features-orm">
|
||||||
|
<title>
|
||||||
Object Relational Mapping
|
Object Relational Mapping
|
||||||
</para>
|
</title>
|
||||||
<para>
|
<sect4 id="features-orm-general">
|
||||||
|
<title>
|
||||||
General Features
|
General Features
|
||||||
</para>
|
</title>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>Validators</listitem>
|
<listitem>Validators</listitem>
|
||||||
<listitem>Transactional errorStack for easy retrieval of all errors</listitem>
|
<listitem>Transactional errorStack for easy retrieval of all errors</listitem>
|
||||||
@ -167,10 +169,11 @@
|
|||||||
<listitem>Importing existing database schemas to Doctrine ActiveRecord objects</listitem>
|
<listitem>Importing existing database schemas to Doctrine ActiveRecord objects</listitem>
|
||||||
<listitem>Exporting Doctrine ActiveRecords to database (= automatic table creation)</listitem>
|
<listitem>Exporting Doctrine ActiveRecords to database (= automatic table creation)</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
</sect4>
|
||||||
<para>
|
<sect4 id="features-orm-mapping">
|
||||||
|
<title>
|
||||||
Mapping
|
Mapping
|
||||||
</para>
|
</title>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>Composite, Natural, Autoincremented and Sequential identifiers</listitem>
|
<listitem>Composite, Natural, Autoincremented and Sequential identifiers</listitem>
|
||||||
<listitem>PHP Array / Object data types for columns (automatic serialization/unserialization)</listitem>
|
<listitem>PHP Array / Object data types for columns (automatic serialization/unserialization)</listitem>
|
||||||
@ -183,10 +186,12 @@
|
|||||||
<listitem>Self-referencing relations even for association table relations</listitem>
|
<listitem>Self-referencing relations even for association table relations</listitem>
|
||||||
<listitem>Relation aliases</listitem>
|
<listitem>Relation aliases</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
</sect4>
|
||||||
|
|
||||||
<para>
|
<sect4 id="features-orm-population">
|
||||||
|
<title>
|
||||||
Object population
|
Object population
|
||||||
</para>
|
</title>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>DQL (Doctrine Query Language), an EJB 3 spec compliant OQL</listitem>
|
<listitem>DQL (Doctrine Query Language), an EJB 3 spec compliant OQL</listitem>
|
||||||
<listitem>The limit-subquery-algorithm</listitem>
|
<listitem>The limit-subquery-algorithm</listitem>
|
||||||
@ -194,15 +199,19 @@
|
|||||||
<listitem>Object population from database views</listitem>
|
<listitem>Object population from database views</listitem>
|
||||||
<listitem>Object population through raw SQL</listitem>
|
<listitem>Object population through raw SQL</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
</sect4>
|
||||||
|
|
||||||
<para>
|
<sect4 id="features-orm-locking">
|
||||||
|
<title>
|
||||||
Transactions and locking
|
Transactions and locking
|
||||||
</para>
|
</title>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>Pessimistic offline locking</listitem>
|
<listitem>Pessimistic offline locking</listitem>
|
||||||
<listitem>Savepoints, transaction isolation levels and nested transactions</listitem>
|
<listitem>Savepoints, transaction isolation levels and nested transactions</listitem>
|
||||||
<listitem>Transactional query optimization (gathering of DELETE statements) </listitem>
|
<listitem>Transactional query optimization (gathering of DELETE statements) </listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
</sect4>
|
||||||
|
</sect3>
|
||||||
</sect1>
|
</sect1>
|
||||||
|
|
||||||
<sect1 id="requirements">
|
<sect1 id="requirements">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user