Top "Doctrine-1.2" questions

Doctrine 1.2 is a PHP (5.2.3+) ORM.

How to make an insert query in DQL

I'm working with symfony and I would like to know how I can do a simple insert using the doctrine:…

insert dql doctrine-1.2
How to escape LIKE %$var% with Doctrine?

I am making a Doctrine query and I have to do a wildcard match in the where clause. How should …

doctrine doctrine-1.2
Adding virtual columns to current table in Doctrine?

I'm using Doctrine 1.2 with Symfony 1.4. Let's say I have a User model, which has one Profile. These are defined as: …

join symfony1 doctrine calculated-columns doctrine-1.2
doctrine how to write WhereIn() with another sql query inside

i have the folowing query in SQL ... where group_id IN (select group_id from alert where monitor_id = 4); I …

sql symfony1 doctrine symfony-1.4 doctrine-1.2
Doctrine Query calculate MAX value in WHERE clause

I have this tables: subscribers id | name | ---+-------+ 1 | Hill | 2 | Sam | 3 | Joe | subscribers_years subscriber_id | year | --------------+-------+ 1 | 2009 | 1 | 2010 | 1 | 2011 | 2 | 2009 | 2 | 2010 | 3 | 2010 | I …

doctrine doctrine-1.2