On Nov 28, 8:03 pm, James <[email protected]> wrote: > Is there a way to configure Sequel so that it doesn't make SQLite LIKE > queries case sensitive?
You could use the ilike method instead of the like method on a per- query basis (assuming you are using the DSL support). If you want to turn off the setting of the case_sensitive_like PRAGMA, pass the :case_sensitive_like=>false option when connecting. Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" 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/sequel-talk?hl=en.
