Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 913 Bytes

propel.rst

File metadata and controls

19 lines (15 loc) · 913 Bytes
.. index::
   single: Propel

Databases and Propel

Propel is an open-source Object-Relational Mapping (ORM) for PHP which implements the ActiveRecord pattern. It allows you to access your database using a set of objects, providing a simple API for storing and retrieving data. Propel uses PDO as an abstraction layer and code generation to remove the burden of runtime introspection.

A few years ago, Propel was a very popular alternative to Doctrine. However, its popularity has rapidly declined and that's why the Symfony book no longer includes the Propel documentation. Read the official PropelBundle documentation to learn how to integrate Propel into your Symfony projects.