Package org.nutz.dao.impl.jdbc

Source Code of org.nutz.dao.impl.jdbc.ClobValueAdaptor

package org.nutz.dao.impl.jdbc;

import java.io.File;
import java.sql.Clob;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Types;

import org.nutz.dao.util.blob.SimpleClob;
import org.nutz.filepool.FilePool;
import org.nutz.lang.Files;

public class ClobValueAdaptor extends AbstractFileValueAdaptor {

  public ClobValueAdaptor(FilePool pool) {
    super(pool);
    suffix = ".clob";
  }

  public Object get(ResultSet rs, String colName) throws SQLException {
    File f = this.createTempFile();
    Files.write(f, rs.getClob(colName).getAsciiStream());
    return new SimpleClob(f);
  }

  public void set(PreparedStatement stat, Object obj, int i) throws SQLException {
    if (null == obj) {
      stat.setNull(i, Types.CLOB);
    } else {
      Clob clob = (Clob) obj;
      stat.setClob(i, clob);
    }
  }

}
TOP

Related Classes of org.nutz.dao.impl.jdbc.ClobValueAdaptor

TOP
Copyright © 2018 www.massapi.com. 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.