Skip to Content (c) Skip to Navigation (n) Skip to Search (s)

1.0-beta (rev 290) released!

xPDO is in beta and we're changing focus to improve documentation and usability. xPDO is being used to develop MODx Revolution 2.0, a next generation PHP-based, Open-Source content management framework.

Forgotten credits...

I'd like to extend a special thanks to Andrea Giammarchi for his PDO for PHP 4 implementation that inspired me to begin coding this project. If not for PHPClasses.org and the inspiration I found in Andrea's work there, the OpenExpedio project would likely not exist, as I probably would have invested my time in working with PHPDoctrine.

Features of OpenExpedio

xPDO Features a Balanced Architectural Foundation
  • Object-relational bridge (ORB) for mapping persistent objects to platform-optimized relational database structures
  • Utilizes PDO, the database access layer adopted as the standard for PHP 5.1+, which provides lightning fast interaction with various relational database platforms.
  • Provides a PDO implementation for PHP 4.3.x, 4.4.x and 5.0.x. Though some 5.0.x installations may have native PDO extensions added via PECL, not all will, and the support for PHP 4, though it requires some restraint in exercising the full potential of PDO, is one of the major goals of the entire xPDO project.
  • The code is ultra-light weight, and loads only what it needs on demand, so it adds virtually no overhead to your scripts. This was done by using generic methods and accessors and keeping all core code native PHP (i.e. no XML configuration parsing or other serialization involved).
  • Promotes platform optimization in conjunction with object abstraction.
  • Supports any database platform accessible with a PDO driver implementation. (NOTE: MySQL, PostegreSQL, and SQLite will be the initial driver implementations for the OpenExpedio-supplied PDO-implementations, for the initial release
  • Fast generation of your classes and their metadata maps from an xPDO model definition. (NOTE: a model definition is simply an XML schema defining a specific object-relational map or model)
  • Fast generation of xPDO model definitions from an existing database.