search for: illegalsequ

Displaying 3 results from an estimated 3 matches for "illegalsequ".

2006 Feb 27
0
Rails Error when searching this mailing list
I typed in "(Iconv::IllegalSequence)" into mhe search field at left, page that came up said something like "Application Error. Rails." Just FYI, in case that''s something someone wants to know about... Micah -- Posted via http://www.ruby-forum.com/.
2007 Apr 05
7
Re: how to use Chinese Characters in wxRuby?
yes,I'm using wxruby2 When I change "samples/text/unicode.rb" 's content: require 'wx' into begin require 'wx' rescue LoadError => no_wx_err begin require 'rubygems' require 'wx' rescue LoadError raise no_wx_err end end and run unicode.rb in this way: ruby -Ku unicode.rb I got the error message like this: unicode.rb:119:
2011 Jun 17
7
Encoding
What''s a good solution for fixing character encoding problems for compatibility between ascii and utf-8? The database is postgres and is encoded in utf-8. Once in awhile there will be a compatibility error from strings from a webform. Is there a command to fix this besides using a_string.force_encoding(''utf-8'')? Even this doesn''t seem to always work either.