Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Doctrine Update query as follow.

$oQuery = Doctrine_Query::create() ->update("Model") ->set("field",$value);

the problem is that if $value is string, I have to ->set("field","'".$value."'");

if it normal? Why can't doctrine do it itself?

am I missing something?

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, use proper Doctrine syntax:

...
->update('Model m')
->set('m.field', '?', $value)
...

This old document will tell you all about it:

http://www.symfony-project.org/doctrine/1_2/en/06-Working-With-Data

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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