i am using rails 4.1 with mysql.
In the database table for a column i have a blob datatype wherein i am saving news paper articles, but while fetching all in index action i am getting below error.
Encoding::UndefinedConversionError ("\xE2" from ASCII-8BIT to UTF-8):
i tried many solutions on the net , but not able to resolve the issue.
* before_save { self.article = article.encode('utf-8', :invalid => :replace, :undef => :replace, :replace => '_')}* etc..
your help is highly appreciated.. thanks