in reply to Re: storing serialized object in a database
in thread storing serialized object in a database
Assuming each class has a deserializing method (or something that lists which db tables contain its data), it's fairly easy to create a join statement to restore data. The serializer would have to take this into account as well, so you're probably better off with a simple method that returns a list of tables containing data to use.
The Everything Engine uses a similar technique, though it's made complicated by other things. Storing metadata in a relational database is a big win, though, and it's a fairly good solution from an implementation and performance standpoint.
|
|---|