Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
69fff9cd
Commit
69fff9cd
authored
Aug 22, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Docs: Connection introduction added
parent
fa61f344
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
Basic Components - Connection - Introduction.php
manual/docs/Basic Components - Connection - Introduction.php
+20
-0
documentation.php
manual/documentation.php
+2
-1
No files found.
manual/docs/Basic Components - Connection - Introduction.php
0 → 100644
View file @
69fff9cd
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
>
manual/documentation.php
View file @
69fff9cd
...
...
@@ -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
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment