This is how my connection is set: Connection conn = DriverManager.getConnection(url + dbName + \"?useUnicode=true&characterEncoding=utf-8\", userName, password
Connection conn = DriverManager.getConnection(url + dbName + \"?useUnicode=true&characterEncoding=utf-8\", userName, password
I you only want to apply the change only for one field, you could try serializing the field
class MyModel < ActiveRecord::Base serialize :content attr_accessible :content, :title end