diff --git a/manual/docs/Basic Components - Connection - Introduction.php b/manual/docs/Basic Components - Connection - Introduction.php
new file mode 100644
index 000000000..9d62a2446
--- /dev/null
+++ b/manual/docs/Basic Components - Connection - Introduction.php
@@ -0,0 +1,20 @@
+Doctrine_Connection is a wrapper for database connection. It handles several things:
+
+- Handles database portability things missing from PDO (eg. LIMIT / OFFSET emulation)
+
+
- Keeps track of Doctrine_Table objects
+
+
- Keeps track of records
+
+
- Keeps track of records that need to be updated / inserted / deleted
+
+
- Handles transactions and transaction nesting
+
+
- Handles the actual querying of the database in the case of INSERT / UPDATE / DELETE operations
+
+
- Can query the database using the DQL API (see Doctrine_Query)
+
+
- Optionally validates transactions using Doctrine_Validator and gives
+full information of possible errors.
+
+
diff --git a/manual/documentation.php b/manual/documentation.php
index f6bdc3caf..e45521ffd 100644
--- a/manual/documentation.php
+++ b/manual/documentation.php
@@ -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 .= " [ code ] ";
//touch("codes/$title - $k - $v2.php");
+
}
$e = implode(".",array($i,$i2,$i3));