Package org.hibernate.lob

Examples of org.hibernate.lob.SerializableBlob


   * @param stream a binary stream
   * @return the Blob
   * @throws IOException
   */
  public static Blob createBlob(InputStream stream) throws IOException {
    return new SerializableBlob( new BlobImpl( stream, stream.available() ) );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.lob.SerializableBlob

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.