On Aug 22, 10:34 am, Jim Burgess <rails-mailing-l...@andreas-s.net>
wrote:
> Is it possible to store data from one form in two separate mysql tables?
> I need to do this because the amount of data which can be submitted via
> the form, exceeds the maximum mysql row size.

That's a lot of data given that the size limit is 65535 (and blobs/
texts only count a few bytes towards that)!
You pretty much need to just do it. Put some of the data from the
params hash into one object and the rest into another. Probably create
an association between these two models.

Fred

> If this is not possible, has anyone got any ideas how one can get round
> this problem?
> Thanks in advance.
> --
> 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-talk@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