| Author |
how to write BLOB type of data from java application into an oracle table
|
Aparna Yadav
Greenhorn
Joined: Sep 13, 2004
Posts: 4
|
|
|
I want to write a java application which will store BLOB type of data into an oracle table & same way retrieve it from table.
|
 |
Shailesh Chandra
Ranch Hand
Joined: Aug 13, 2004
Posts: 1076
|
|
use PreparedStatement !!! you can set your blob data using PreparedStatement.setBlob(int i, Blob x) and you can retrieve your blob from resultset using resultset.getBlob(String colName)
|
Gravitation cannot be held responsible for people falling in love ~ Albert Einstein
|
 |
 |
|
|
subject: how to write BLOB type of data from java application into an oracle table
|
|
|