Hi I am trying to update a blob column from Ruby script into MySQL DB.
The script is running on PC and DB on Linux host.
The problem I see is that only 255 bytes of data being stored ,
is there any way to deal with that problem ?


myconnect = Mysql::new(host, user,  "", db)
f = File.new(file_name,'rb')


data = Mysql.escape_string(f.sysread(f.size))

update_sql = "update SHARE set COMPANY_LOGO = '"+ data + "' WHERE ID =
8982167534873685924";

stmt = myconnect.prepare(update_sql)
stmt.execute()


stmt.close
myconnect.commit
myconnect.close


I also tried to leave a - '?' mark and than fill it with data, that one
is not storing anything.

-- 
Posted via http://www.ruby-forum.com/.

-- 
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 rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to