I'm doing some searching of tags, and some users like "cat" while others like "Cat" Go figure...
Anyways, is there a way to force a particular find to be case sensitive? Such as:
Tag.find(:some-special-option-here)
Any ideas?
|
I'm doing some searching of tags, and some users like "cat" while others like "Cat" Go figure... Anyways, is there a way to force a particular find to be case sensitive? Such as:
Any ideas?
| |||
|
feedback
|
|
You can also do a case-sensitive search without changing your column properties.
This query matches
while
machtes only
| |||
|
feedback
|
|
You can make all strings case sensitive when you create the table by adding "COLLATE utf8_bin" to the :options string when creating the table. For example:
| |||
|
feedback
|
|
In the mysql database, set your text's data type to utf_collate_bin. For example:
Where 'sets' is the table, 'set_name' is the column of type VARCHAR(64). You can also do this in PhpMyAdmin.. Any binary collate will do the job; but utf8 is preferable. If you were wondering what the _ci at the end of your current collate is, it means "Case Insensitive" :p | |||
|
feedback
|