I having problems to generate a doctrine_rawsql with a custom select.

This is my rawsql

$distance = glength(linestringfromwkb(linestring(asbinary(GeomFromText('POINT( FLOAT('30') FLOAT('-3')),asbinary({l.point})))) as distance

$q->select($distance)
                ->from('place p INNER JOIN location l ON p.location_id = l.id')
                ->addComponent('p', 'Place p')
                ->addComponent('l', 'p.Location l')

if I do a $q->getSql() the distance doesn't appears in the generated sql.

Any ideas? I am doing something wrong?

link|improve this question

stackoverflow.com/questions/2287368/… is also trying the same, but hasn't been answered. Did you have any success? – bouke Aug 18 '10 at 9:08
I modified the Doctrine code inorder to allow this. Doctrine only supports SQL standard. This Geom functions/Data arent supported. – llazzaro Sep 3 '10 at 3:27
How exactly didn't you modify Doctrine to allow this? I'm also having this problem and am unsure or how to fix it. – Dan Oct 13 '10 at 15:50
check my new answer!! – llazzaro May 22 '11 at 18:37
feedback

1 Answer

up vote 0 down vote accepted

The problem seems to be solved now using Doctrine_Expression

$user = new User(); 
$user->username = 'jwage'; 
$user->updated_at = new Doctrine_Expression('NOW()'); 
$user->save(); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.