| Author |
How do we read an object in java which is stored in mysql as Blob data type
|
shailesh Kumar Prajapati
Greenhorn
Joined: Jun 20, 2009
Posts: 1
|
|
How do we read an object in java which is stored in mysql as Blob data type?
MySql Table stored classes Object, like
Class Student implements Serialized{
int roll;
String name;
String course;
Student(int roll, String course, String name)
{
this.roll=roll;
this.name=name;
this.course=course;
}
}
we creat the object of class
Student stud=new Student(1."ram","Java");
Mysql database table stored stud.
How we read and display the object & its containts
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26192
|
|
|
Here's a good example of writing a Blob. It's easy to infer what the opposite would be.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: How do we read an object in java which is stored in mysql as Blob data type
|
|
|