aspose file tools
The moose likes JDBC and the fly likes Store Object in Database Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Store Object in Database" Watch "Store Object in Database" New topic
Author

Store Object in Database

kandarp mehta
Greenhorn

Joined: May 04, 2010
Posts: 6
How can I store field value which return type is Object in MySQL? I mean that I want to store below field value in MySQL through JDBC. Is anybody knows equivalent datatype in MySQL?
Karthik Shiraly
Ranch Hand

Joined: Apr 04, 2009
Posts: 364
Hi,

If you want to a Java object as a serialized stream in java serialization format, then store it as a BLOB in the database.

But this is rather unusual, since it ties that column to java. If your database is, or may potentially be, used from another platform (like PHP), then store the object fields separately, mapping them meaningfully to regular SQL types.
Scott Selikoff
Saloon Keeper

Joined: Oct 23, 2005
Posts: 3652

There is no such thing as an object data type in a database. You could serialize the data as a string but I wouldn't recommend it since then searching or querying the object would be useless. Better to break the object up into meaningful, structured data.


My Blog: Down Home Country Coding with Scott Selikoff
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32620
    
    4
And welcome to the Ranch
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Store Object in Database
 
Similar Threads
mySQL and Blob problem
remove null
jsp and mysql error
Problem while retrieving values from table
using the hidden value fields