Package org.nutz.dao.util.blob

Examples of org.nutz.dao.util.blob.SimpleBlob


  }

  public Object get(ResultSet rs, String colName) throws SQLException {
    File f = this.createTempFile();
    Files.write(f, rs.getBlob(colName).getBinaryStream());
    return new SimpleBlob(f);
  }
View Full Code Here


        File f = this.createTempFile();
        Blob blob = rs.getBlob(colName);
        if (blob == null)
            return null;
        Files.write(f, blob.getBinaryStream());
        return new SimpleBlob(f);
    }
View Full Code Here

TOP

Related Classes of org.nutz.dao.util.blob.SimpleBlob

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.