Hi everyone, Is it possible to use Propel with database functions? i.e. I want to do the following:
SELECT * FROM table WHERE LCASE(field) = ? And this is what I've got so far: $c = new Criteria(); $c->add(TablePeer::FIELD, $value); return TablePeer::doSelect($c); How can I get it to accept LCASE on the DB? Is this even possible? Thanks, Jevon --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
