dORM - PHP ORM (Object Relational Mapper) Welcome - Outlet PHP ORM. Inserts Selecting Entities Configuration Instantiate your entities and manipulate them just like regular objects. Save them when ready. <? Php$outlet = Outlet::getInstance(); $client = new Client;$client->Name = 'Test Client'; $project = new Project;$project->Name = 'Cool Project';$project->setClient( $client ); $bug = new Bug;$bug->Title = "Button doesn't work"; $project->addBug( $bug ); // inserts the project // and all of the related entities// in one transaction$outlet->save( $project ); You can select using straight SQL.
<? Entities contain no database code. <? Configuration is just a PHP array. <? Subscribe to Outlet ORM discussion group You are also welcome to post relevant questions/comments to the list without actually joining. Outlet is an open source object-to-relational mapping tool for PHP. It differs from other orm solutions for php in that it provides transparent, unobtrusive persistence. Outlet is released under the New BSD License. Version 1.0 Release Candidate 1 Released! Enjoy! Home | phpDataMapper – PHP DataMapper ORM. RedBeanPHP | Easy ORM for PHP. Propel - The Fast PHP5 ORM. Doctrine - PHP Object Persistence Libraries and More.