I am working with SQLAlchemy 0.4.3
In the 0.4 documentation, the way to query using the SQL LIKE operator
is as follows:
addresses.c.email_address.like('[EMAIL PROTECTED]')
Does this work for the ILIKE operator as well?
e.g. addresses.c.email_address.ilike('[EMAIL PROTECTED]')
or should I use the previous way (that worked in 0.3.11) as in
scanreport_def.c.filename.op('ilike')("%.exe")
Thank you.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" 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/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---