> When creating a LAMP app, I always start by writing ORM myself. > It's fun but it usually takes a long time. > Besides, that always results in a toy-system, > I mean, that has not so many features, not so efficient non-bug-free. > > I started to think that now is the time to throw away my rubbish > and use more effective Open source ORM. > > So my question is what ORM are you using? > What ORM do you recommend? > There're lots of Web app frameworks out there > but I could't find simple ORM in PHP. > > Thanks in advance. > Have a look at Qcodo. http://www.qcodo.com. It uses code generation to create your ORM for you direct from the DB tables. As it's code generation as opposed to run time analysis (which is what ActiveRecord and the like use), there is no performance hit - it literally just creates your PHP class files for you. There is a framework aspect to Qcodo called QForms but this is decoupled from the generated ORM so you don't have to use it if you don't want it. HTH, Edward -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php