PGError: ERROR: invalid byte sequence for encoding "UTF8": 0xa7 (ActiveRecord::StatementInvalid)
HINT: This error can also happen if the byte sequence does not match the encoding expected by the server, which is controlled by "client_encoding".
The above error was being generated when I was trying to save model objects that had their string and text attributes assigned from data that had been scrapped using http with scRUBYt. After searching on Google the only 'work-around' I found was to use base64 encode and decode when reading and writing to these model attributes / database columns
Given the following migration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CreateWidgets < ActiveRecord::Migration | |
def self.up | |
create_table :widgets do |t| | |
t.string :name, :limit => 255, :null => false | |
t.timestamps | |
end | |
end | |
def self.down | |
drop_table :widgets | |
end | |
end | |
Our model before and then after applying the work-around
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# before the work-around | |
class Widget | |
end | |
# after the work-around | |
require 'base64' | |
class Widget | |
# override the rails attribute (getter) | |
def name | |
Base64::decode64(self[:name]) | |
end | |
# override the rails attribute (setter) | |
def name=(value) | |
self[:name] = Base64::encode64(value) | |
end | |
end |
Resources
1 comment:
Had an issue with comment moderation
------------------------------------
Justin Ko posted the following about a month ago
---------
The last solution on this post also works.
http://blogs.jetthoughts.com/blog/2009/12/16/postgresql-insert-not-valid-unicode-values/
Post a Comment