Top "Propel" questions

Propel is an open-source object-relational mapping (ORM) for PHP 5. It allows you to access your database using a set of objects, providing a simple API for storing and retrieving data.

PHP ORMs: Doctrine vs. Propel

I'm starting a new project with symfony which is readily integrated with Doctrine and Propel, but I of course need …

php orm symfony1 doctrine propel
In symfony, how to set the value of a form field?

I'm overriding my doSave() method to basically do the following: I have a sfWidgetFormPropelChoice field that the user can either …

php mysql symfony1 propel
Twig instanceof for inheritance objects

I am using the following feature from propel http://www.propelorm.org/documentation/09-inheritance.html. I am also using Symfony2 …

symfony propel twig single-table-inheritance
Propel: Get Raw SQL from Query object?

How do I get the raw SQL statement from a query object in Propel? I need this for debugging purposes. …

php sql orm propel
How to add an autocomplete field in a Symfony2 form for a collection and using Propel?

I'm using Symfony 2.1 forms with PropelBundle and I'm trying to refactor a form that had a drop-down list of objects (…

propel symfony-forms symfony-2.1
Storing a serialized object in MySql database

I have a big php object that I want to serialize and store in a MySql database. The table encoding …

php mysql encoding propel object-serialization
Export MySQL Workbench data model directly to Schema YML in Propel/ Symfony

Is there any plugin that directly exports MYSQL Workbench data model directly to YML for Propel consumption?

mysql yaml propel mysql-workbench
RedBean ORM performance

I would like to know, can Redbean ORM be used for performance oriented scenarios like social networking web apps, and …

php orm doctrine propel redbean
Count and group-by with Propel

In Doctrine I can do: public function getCount() { $q = $this->createQuery('q') ->select('*') ->…

php symfony1 propel
Symfony app - how to add calculated fields to Propel objects?

What is the best way of working with calculated fields of Propel objects? Say I have an object "Customer" that …

php orm symfony1 propel