I am looking for a PHP CRUD solution, that if possible has the following chatacteristics:
- only generates CRUD queries and not HTML forms
- is robust, but lightweight
- can handle table relationships
- uses PDO or similar Db abstraction layer
I am still interesting in hearing views, even if a solution doesn’t cover all of the above
Have a look at http://www.phalconphp.com.
The ORM is written in C and can provide all the CRUD operations through its own SQL hybrid language but using PDO in the background.