Package com.caucho.db.blob

Examples of com.caucho.db.blob.BlobInputStream


   */
  public InputStream getAsciiStream()
    throws SQLException
  {
    // XXX: lie, since this is utf8
    return new BlobInputStream(_store, _inode, 0);
  }
View Full Code Here


   * Returns the blob as a stream.
   */
  public InputStream getBinaryStream()
    throws SQLException
  {
    return new BlobInputStream(_store, _inode, 0);
  }
View Full Code Here

TOP

Related Classes of com.caucho.db.blob.BlobInputStream

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.