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.

Select all fields where fieldone is not equal to null + Propel

I have a question about using the propel ORM and creating a query. I have a table "locations" with fields: …

php mysql pear propel phing
How to compile Propel Criteria to SQL

How can I compile Propel Criteria to clear SQL? I've tried $criteria->toString(); but this is not I expected. …

php sql criteria propel
How to order by multiple columns with propel

I need to sort a query by 2 columns. Is this possible using propel? i tried: $c->addAscendingOrderByColumn(self::COL1); $…

symfony-1.4 propel
Which ORM to use with Symfony2?

I'm starting a new project with Symfony2 and I'm not really sure which ORM to choose. I've heard some bad …

orm symfony doctrine-orm propel
Performing Join with Multiple Criteria in Propel 1.5

This question follows on from the questions here and here. I have recently upgraded to Propel 1.5, and have started using …

mysql join symfony1 propel
The WHERE IN clause using propel in symfony

How can I create the following query using propel ? UPDATE tablename SET status = 1 WHERE id IN (1,2,3,4)

php mysql symfony1 propel
How can I filter date-time columns by dates in Propel 1.6?

I would like to filter results as in $searchDate = "2013-03-01"; $query->usePublicationQuery() ->filterByPublishedAt($searchDate) ->…

php mysql date datetime propel
Select specific column(s) using Propel without aliasing

I'm having quite a bit of trouble rewriting a simple query using methods provided by Propel 1.6. The query is as …

php propel
phing installed but "not found" and not in pear list

I'm attempting to install the Propel ORM on CentOS which has a dependency for phing. I've run the following which …

php installation pear propel phing
Propel: selecting columns from aliased join tables

I have the following two tables: table_a: id_table_a: { type: integer, primaryKey: true, autoIncrement: true, required: true } name: { …

php mysql sql orm propel