"SYSIBM.BLOBGETBYTES(?,?,?)");
cs.registerOutParameter(1, java.sql.Types.VARBINARY);
cs.setInt(2, locator);
cs.setLong(3, 1);
cs.setInt(4, newString.length());
cs.executeUpdate();
byte [] retVal = cs.getBytes(1);
//compare the new bytes and the bytes returned by the stored
//procedure to see of they are the same.
for (int i=0;i<newString.length();i++){
assertEquals