HashMap map = test.findBlob(blobId);
System.out.println("is hello in map: " + map.get("hello"));
System.out.println(test.findClob(blobId));
System.out.println("creating and getting a BlobEntity2 that uses byte[] and String instead of Clob/Blob");
blobId = test.create2();
BlobEntity2 entity = test.findBlob2(blobId);
}