Hi
While writing Blob object in Oracle db, my connection is getting reset.
<<My Code-----
try {
PreparedStatement ps =null;
Connection conn = getConnection();
String sql = "INSERT INTO ATTACHMENT (ATTACHMENT.ID, DOC_DATA) "VALUES (?,?)";
ByteArrayInputStream inStream =
new ByteArrayInputStream(dto.getDoc_Data());
ps = conn.prepareStatement(sql);
ps.setInt(1,attachment_Id);
ps.setBinaryStream(4,inStream,inStream.available());
int rowsAdded = ps.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
}
>>>
I dont know why my my connection is getting reset so getting an error..i am trying to put a pdf file of size around 45kb...