You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to the like operator, but case-insensitive. Could be implemented as-is by using the ILIKE SQL operator, or could be emulated by using the LOWER() SQL function: Persons.name.lower().like("foo%").
The text was updated successfully, but these errors were encountered:
Thank you so much, indeed the documentation mentions how to add support for the ILIKE operator. Switching to org.ktorm:ktorm-support-postgresql made the ILIKE operator available and it works well with H2. Thank you, this solves the problem for me.
Similar to the
like
operator, but case-insensitive. Could be implemented as-is by using theILIKE
SQL operator, or could be emulated by using theLOWER()
SQL function:Persons.name.lower().like("foo%")
.The text was updated successfully, but these errors were encountered: