On Dec 23, 8:51 pm, Roman Mandeleil <li...@ruby-forum.com> wrote:
> 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 ?

What's the type of the column?

Fred
>
> 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 viahttp://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