77787980818283
} public Object get(ResultSet rs, String name) throws HibernateException, SQLException { Clob value = rs.getClob(name); return rs.wasNull() ? null : new SerializableClob(value); }
383384385386387388389
* Create a new <tt>Clob</tt>. The returned object will be initially immutable. * * @param string a <tt>String</tt> */ public static Clob createClob(String string) { return new SerializableClob( new ClobImpl( string ) ); }
393394395396397398399
* * @param reader a character stream * @param length the number of characters in the stream */ public static Clob createClob(Reader reader, int length) { return new SerializableClob( new ClobImpl( reader, length ) ); }
54555657585960
406407408409410411412
416417418419420421422
421422423424425426427
431432433434435436437