I've been looking at the FileStore implementation and you(Kief/Craig) basically
store a java object in the textfile, using the same approach with a DB usually(?!)
involves using a SQL3 capable RDBMS i.e. Oracle, since you probably want to store
the object as a Blob or might even work with a STRUCT. Anyway, I'm kind of reluctant
to save objects in to a RDBMS and sort or "overriding" the native formats.
Have anyone got any ideas on how to solve this in a good way? Preferably so it would
work with JDBC < 2.0 i.e., not use SQL3 datatypes. Otherwise I'll just go ahead and
implement it as either a blob or a STRUCT whichever works out best.
Thanks, Bip