How can I read and write serialized objects to and from a database?
Created May 4, 2012
Simon Brown
If your RDBMS supports them, you can store serialized objects as BLOBs.
These are JDBC 2.0 features, but take a look at java.sql.Blob, ResultSet and PreparedStatement for more information.