PHP 5.3 full-blown ActiveRecord |
[eluser]vlad_ci[/eluser]
http://www.doctrine-project.org/ Doctrine is probably the most complete and sophisticated (and therefore long-time to learn and has performance penalty) ORM system for PHP ------------ Doctrine is an object relational mapper (ORM) for PHP 5.2.3+ that sits on top of a powerful database abstraction layer (DBAL). One of its key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL), inspired by Hibernates HQL. This provides developers with a powerful alternative to SQL that maintains flexibility without requiring unnecessary code duplication. ------------ Since all of my tables sofar have one primary key and they reside in different database instances (I use database sharding extensively) most of the ORMs do not work for me, so I have my own primitive one to just generate 'strings' representing SQL statements for PDO functions. |
Messages In This Thread |
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-14-2009, 12:45 PM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-14-2009, 01:06 PM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-14-2009, 01:13 PM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-15-2009, 01:24 AM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-15-2009, 01:43 AM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-15-2009, 06:51 AM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-15-2009, 02:20 PM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-15-2009, 03:06 PM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-19-2009, 09:57 PM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-19-2009, 10:09 PM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-20-2009, 03:43 AM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-21-2009, 09:24 PM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-22-2009, 01:12 AM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-22-2009, 06:38 AM
PHP 5.3 full-blown ActiveRecord - by El Forum - 05-22-2009, 06:54 AM
PHP 5.3 full-blown ActiveRecord - by El Forum - 07-21-2009, 12:45 AM
|