I am using the Zend MVC framework along with an ORM layer generated with Propel, and I\'m trying to figure out the best way to catch exceptions from a Propel object\'s save() function, and throw them
Here is the query I need to run SELECT REPLACE(REPLACE(SUBSTRING_INDEX(LOWER(table.url), \'/\',3), \'www.\', \'\'), \'http://\', \'\') AS domain FROM table GROUP BY domain
I a开发者_Python百科m using Propel (1.4) with Symfony 1.31 (with mySQL db). I want to save save/retriev BLOB (gzipped) data to/from the database
I am going through an issue to setup a file upload validator on callback. I want to achieve this: I have a form, where user choose the type of the file they are uploading and upload the file.
When trying to create a build using propel-gen (propel v 1.4) I get: 开发者_JS百科[phing] Error reading project file
I am using the Propel ORM with SF (1.4). I am writing a class, and I need to rewrite a query Doctrine query into Propel:
I\'m starting a new project with symfony which is readily integrated with Doctrine and Propel, but I of course need to make a choice.... I was wondering if more experienced people out there have gener
I\'m trying to create a UNION query using the Propel ORM e.g $criterion1 UNION $criterion2 Does anyone know how to do t开发者_如何学Pythonhis?You cannot create a union query using Criteria. Instead
I have a Page object whose uniqueness comes from its PageDomain. The schema is configured such that the page table contains a page_domain_id field to create the relationship. To show a page, I have an
I would like execute a query like this one in symfony using the Propel ORM: UPDATE ADS SET HITS=HITS+1 WHERE ID=10;