Storing Java Objects

2003-08-29 Thread Dennis Knol
Hello, Is it possible to store Java objects in the mysql database? Kind regards, Dennis Get advanced SPAM filtering on Webmail or POP Mail ... Get Lycos Mail! http://login.mail.lycos.com/r/referral?aid=27005 -- MySQL General

Re: Storing Java Objects

2003-08-29 Thread Jeff Mathis
I wonder if you could serialize your object, and then store it in a blob column. I'd be interested to know ... Dennis Knol wrote: Hello, Is it possible to store Java objects in the mysql database? Kind regards, Dennis Get

Re: Storing Java Objects

2003-08-29 Thread colbey
I'd be willing to bet if you implement serializable, serialize it and dump it to a binary column (blob) .. you should be able to restore... On Fri, 29 Aug 2003, Dennis Knol wrote: Hello, Is it possible to store Java objects in the mysql database? Kind regards, Dennis

Re: Storing Java Objects

2003-08-29 Thread Mark Matthews
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: I'd be willing to bet if you implement serializable, serialize it and dump it to a binary column (blob) .. you should be able to restore... If you use PreparedStatements, Connector/J will do it 'automagically' for you as