>
> If you're doing that a lot in your database, personally I'd recommend
> looking at one of the NoSQL types such as CouchDB or Cassandra.  Most of my
> work is neatly normalised tables, but if I had a lot of really freeform data
> as you seem to, that's where I'd look.
>

On the other hand, if you did keep it the way you want to/describe, you
could do some really nice stuff with method_missing so you could write code
like this:

client.email = "[email protected]"
puts client.email

and have it store and retrieve the attribute automatically.  That's a lot
better than it would be in other languages.

Cheers,


Andy

-- 
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