|
0
|
1 |
# Doctrine 2 ORM |
|
|
2 |
|
|
|
3 |
Doctrine 2 is an object-relational mapper (ORM) for PHP 5.3.0+ that provides transparent persistence |
|
|
4 |
for PHP objects. It sits on top of a powerful database abstraction layer (DBAL). One of its key features |
|
|
5 |
is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL), |
|
|
6 |
inspired by Hibernates HQL. This provides developers with a powerful alternative to SQL that maintains flexibility |
|
|
7 |
without requiring unnecessary code duplication. |
|
|
8 |
|
|
|
9 |
More resources: |
|
|
10 |
|
|
|
11 |
* [Website](http://www.doctrine-project.org) |
|
|
12 |
* [Documentation](http://www.doctrine-project.org/projects/orm/2.0/docs/reference/introduction/en) |
|
|
13 |
* [Issue Tracker](http://www.doctrine-project.org/jira/browse/DDC) |
|
|
14 |
* [Downloads](http://github.com/doctrine/doctrine2/downloads) |