I'm on ruby 2.2.0 and rails 4.2.0.
For a project i have a table calles 'Character' where each record is a character. When i'm doing a search for a record with 'where' for example the framework do a mistake between character.
For example :
Basic.where(:character => 'Í')
return all record with a I like character: "Ï", character: "I", character: "i", character: "í", character: "ì",...
My DB is encoding in utf8-general-ci and when i put my data into the db I use 'iso-8859-1:utf-8' encoding.