R
Ruffin Bailey
It appears your only route for using System.Runtime.Serialization and
friends with a database is to use a blob field and shove the zeroes
and ones in there. This loses half of the reason you're shoving
everything into a database to begin with -- sure you can pull out your
serialized object, but you're not able to search by properties or
group by expressions, etc.
Short of rolling your own objects, is there any "more intelligent"
method to get serialization, more along the lines of what I get in
Java using JDO (http://java.sun.com/products/jdbc/related.html#what_is)?
I realize there's a bit of a mixed metaphor going on here (relation
databases versus object oriented programming), but I'm not sure there
has to be.
Thanks,
Ruffin Bailey
friends with a database is to use a blob field and shove the zeroes
and ones in there. This loses half of the reason you're shoving
everything into a database to begin with -- sure you can pull out your
serialized object, but you're not able to search by properties or
group by expressions, etc.
Short of rolling your own objects, is there any "more intelligent"
method to get serialization, more along the lines of what I get in
Java using JDO (http://java.sun.com/products/jdbc/related.html#what_is)?
I realize there's a bit of a mixed metaphor going on here (relation
databases versus object oriented programming), but I'm not sure there
has to be.
Thanks,
Ruffin Bailey