throws SQLException {
InputStream blobInput = new ByteArrayInputStream(blobData, 0, blobData.length);
PreparedStatement pStmt =
con.prepareStatement("update BLOBCLOB set BLOBDATA = ? where ID = ?");
try {
blobInput.reset();
} catch (IOException ioe) {
fail("Failed to reset blob input stream: " + ioe.getMessage());
}
pStmt.setBlob(1, blobInput, blobData.length);
pStmt.setInt(2, ID_SAMPLEVALUES);