Package org.hibernate.engine.jdbc.internal

Examples of org.hibernate.engine.jdbc.internal.BinaryStreamImpl


   * @param length The amount to extract
   *
   * @return The extracted bytes as a stream
   */
  public static InputStream subStream(InputStream inputStream, long start, int length) {
    return new BinaryStreamImpl( extractBytes( inputStream, start, length ) );
  }
View Full Code Here


   *
   * @param bytes The byte array
   * @see #generateProxy(byte[])
   */
  private BlobProxy(byte[] bytes) {
    binaryStream = new BinaryStreamImpl( bytes );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.engine.jdbc.internal.BinaryStreamImpl

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.