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('%@
msn.com')
Does this work for the ILIKE operator as well?
e.g. addresses.c.email_address.ilike('%@mSn%')
or should I use the previous way (that worked in 0.3.11) as in
scanreport_def.c.filename.op('ilike')("%.exe")
Thank you.