Select entries between dates in doctrine 2
I will go insane with this minimal error that I'm not getting fix. I want to select entries between two days, the examples below ilustrate all my fails: opt 1. $qb->where('e.fecha > ' . $monday->format('Y-m-d')); $qb->andWhere('e.fecha < ' . $sunday->format('Y-m-d')); result (0 entries): SELECT r0_.id_reservacion AS id_reservacion0, r0_.fecha AS fecha1, r0_.cliente AS cliente2 FROM reservacion r0_ WHERE (r0_.fecha > 2012 - 07 - 16) AND (r0_.fecha < 2012 - 07 - 22) opt 2 $qb->add('where', 'e.fecha between 2012-01-01 and 2012-10-10'); result (0 entries): SELECT r0_.id_reservacion AS id