You cannot post messages because only members can post, and you are not currently a member.
Description:
Doctrine User mailing list. For questions regarding installation and usage of doctrine.
|
|
|
Zend cache doctrine result serialization problem
|
| |
Hi can you help me please! I want to use zend cache file since i'm in shared hosting. So the problem is i cant retrieve cached doctrine file result. data has serialized coz it 's object. *$cache->load($id)* return as array i can't unserialize back. Please i will glad if you could help me or suggest something. Here my code:... more »
|
|
Doctrine2 should automatically merge associated entities if they are detached
|
| |
Hi,
I am building an order process, in which an Order object is built
through many steps. After each step I put the partly finished Order
object into the session, and in the final step I save it into the
database.
During the steps I load other, (already existing) associated objects
into my Order object(eg. DiscountCoupon). The problem is that when I... more »
|
|
query builder help
|
| |
I am having issues using the \Doctrine\DBAL\Query\QueryBuil der object
to construct a query with multiple left joins.
The query builder I am trying to run is:
$qb = $conn->createQueryBuilder();
$qb->select('u.user_id')
->addSelect('GROUP_CONCAT(r.ro le_name) AS roles')
->from('users', 'u')... more »
|
|
|