Methods Summary |
---|
public long | create()
BlobEntity blob = new BlobEntity();
HashMap map = new HashMap();
map.put("hello", "world");
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try
{
ObjectOutputStream oos = new ObjectOutputStream(baos);
oos.writeObject(map);
blob.setBlobby(Hibernate.createBlob(baos.toByteArray()));
}
catch (IOException e)
{
throw new RuntimeException(e);
}
String clobby = "This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work";
blob.setClobby(Hibernate.createClob(clobby));
manager.persist(blob);
return blob.getId();
|
public long | create2()
BlobEntity2 blob = new BlobEntity2();
HashMap map = new HashMap();
map.put("hello", "world");
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try
{
ObjectOutputStream oos = new ObjectOutputStream(baos);
oos.writeObject(map);
blob.setBlobby(baos.toByteArray());
}
catch (IOException e)
{
throw new RuntimeException(e);
}
String clobby = "This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work" +
"This is a very long string that will be stored in a java.sql.Clob hopefully. We'll see how this works and if it will work";
blob.setClobby(clobby);
manager.persist(blob);
return blob.getId();
|
public java.util.HashMap | findBlob(long id)
BlobEntity blob = manager.find(BlobEntity.class, id);
ObjectInputStream ois = new ObjectInputStream(blob.getBlobby().getBinaryStream());
return (HashMap) ois.readObject();
|
public BlobEntity2 | findBlob2(long id)
return manager.find(BlobEntity2.class, id);
|
public java.lang.String | findClob(long id)
BlobEntity blob = manager.find(BlobEntity.class, id);
return blob.getClobby().getSubString(1, 31);
|