I have oracle 10g and my db is in AL32UTF8, I had install oci8 from
oracle but when i run a query the greek characters returns with ???. I
tried also with dbi but with no luck. My ruby version is 1.8.7 and my
system ubuntu 10.04. Here is my code:


require 'rubygems'
require 'unicode'
require 'iconv'
require 'oci8'
require 'jcode'

conn = OCI8.new('user', 'password', 'host/db')
conn.exec('select * from tablet ')  do |r|
puts r

end
conn.logoff



Any suggestions how to change charset enconding?

Thank you

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to