1
0
mirror of synced 2025-01-18 06:21:40 +03:00

Docs: Connection introduction added

This commit is contained in:
zYne 2006-08-22 18:23:32 +00:00
parent fa61f3448f
commit 69fff9cdce
2 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,20 @@
Doctrine_Connection is a wrapper for database connection. It handles several things:
<ul>
<li \> Handles database portability things missing from PDO (eg. LIMIT / OFFSET emulation)
<li \> Keeps track of Doctrine_Table objects
<li \> Keeps track of records
<li \> Keeps track of records that need to be updated / inserted / deleted
<li \> Handles transactions and transaction nesting
<li \> Handles the actual querying of the database in the case of INSERT / UPDATE / DELETE operations
<li \> Can query the database using the DQL API (see Doctrine_Query)
<li \> Optionally validates transactions using Doctrine_Validator and gives
full information of possible errors.
</ul>

View File

@ -177,7 +177,7 @@ $menu = array("Getting started" =>
"Overview",
"List of exceptions"
)
),
),
"Mapping object relations" =>
array(
"Introduction",
@ -368,6 +368,7 @@ $menu = array("Getting started" =>
$missing[1]++;
$str .= " [ <font color='red'>code</font> ] ";
//touch("codes/$title - $k - $v2.php");
}
$e = implode(".",array($i,$i2,$i3));