just wondering why i have to do :
sqlalchemy.sql.func.lower( class.column ) == string.lower()
instead of :
class.column.lower() = string.lower()
btw - i know in the archives people have mentioned doing an ilike
search, but a "WHERE lower(column) = 'string'" search will search
against a functioned index on postgres and I believe oracle.
considerably faster on large data sets.
--
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.