I\'m just starting with Propel and for more rapid development I\'m curious if there is anything like automat开发者_运维知识库ic forms. Something like default administration in Django.
Using Propel I would like to find records which have a date field which is not null and also between a specific range.
I have a project consists of a java and a php application. The java application uses the torque-ORM and the PHP application uses the propel ORM.
I am trying to load fixtures but myproject is erroring at the CLI and starting the indexer process. I have tried:
My table开发者_运维问答s are named in a plural form - Models / Entities, is there a way to make the generated classes named Model / Entity?
I am soft-deleting objects in a MySQL database and using the Propel ORM. I have gotten soft-deleting to work, but at the cost of losing my enforced parent-child relationships, since the actual rows ar
do anyone suggest using an external ORM like Doctrine/Propel over the defual开发者_开发百科t Zend_Db_Table in Zend Framework ?
Can anyone recommend a good PHP paging class? I have searched google, but have not seen anything that matches my requirements. Rather than \"rolling my own\" (and almost surely reinventing the wheel)
I have 3 database tables: article article_has_tag (2 FK\'s to the other tables) tag I currently show a list of articles with the article\'s tags shown underneath but the number of queries grows as
I am trying to implement a very simple search function with PHP in symfony. Basically I have a form that posts a query and I want to retrieve the items in the database that match the query.