Do I need to wrap strings with '' when using Doctrine update set method?
- by terrani
Hi,
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?