I'm trying to find a record based on values of field1 and field2. This is my query
$rec = RecQuery::create()->filterByField1($field1)
->filterByField2($field2)
->findOne();
$field2 could have strange characters sometimes. For some reason whenever $field2 contains a \ or /, propel can't retrieve the record and returns an empty result.
If I do this (get ALL records based on field1 only, then loop to match field2), then it works fine and is able to retrieve it
$recs = RecQuery::create()->filterByField1($field1)->find();
foreach ($recs as $rec){
if($rec->getField2() == $field2)
//found the record
}
}
Does anyone know what the problem is?
$field2its value? What database do you use? This is probably an escaping bug, but I don't know who is supposed to escape the value (probably Propel). – Jan Fabry Mar 10 '11 at 8:11