PreparedStatement: setClob(int parameterIndex, Clob x) : PreparedStatement « java.sql « Java by API






PreparedStatement: setClob(int parameterIndex, Clob x)

 

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;

public class DemoPreparedStatementSetClob {
  public static Connection getConnection() throws Exception {
    String driver = "org.gjt.mm.mysql.Driver";
    String url = "jdbc:mysql://localhost/databaseName";
    String username = "root";
    String password = "root";
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, username, password);
    return conn;
  }

  public static void main(String[] args)throws Exception {
    String id = "0001";
    String newID = "0002";

    ResultSet rs = null;
    Connection conn = null;
    PreparedStatement pstmt = null;
    try {
      conn = getConnection();
      // begin transaction
      conn.setAutoCommit(false);
      String query1 = "select clob_column from clob_table where id = ?";
      pstmt = conn.prepareStatement(query1);
      pstmt.setString(1, id);
      rs = pstmt.executeQuery();
      rs.next();
      java.sql.Clob clob = (java.sql.Clob) rs.getObject(1);
      String query = "insert into clob_table(id, clob_column) values(?, ?)";
      pstmt = conn.prepareStatement(query);
      pstmt.setString(1, newID);
      pstmt.setClob(2, clob);

      int rowCount = pstmt.executeUpdate();
      System.out.println("rowCount=" + rowCount);
      conn.commit();
    } finally {
      rs.close();
      pstmt.close();
      conn.close();
    }
  }
}

   
  








Related examples in the same category

1.PreparedStatement: addBatch()
2.PreparedStatement: executeUpdate()
3.PreparedStatement: getParameterMetaData()
4.PreparedStatement: getWarnings()
5.PreparedStatement: setAsciiStream(int parameterIndex, InputStream x, int length)
6.PreparedStatement: setBigDecimal(int parameterIndex, BigDecimal x)
7.PreparedStatement: setBinaryStream(int parameterIndex, InputStream x, int length)
8.PreparedStatement: setBoolean(int parameterIndex, boolean x)
9.PreparedStatement: setByte(int parameterIndex, byte x)
10.PreparedStatement: setCharacterStream(int parameterIndex, Reader reader, int length)
11.PreparedStatement: setDate(int parameterIndex, Date x)
12.PreparedStatement: setDouble(int parameterIndex, double x)
13.PreparedStatement: setInt(int parameterIndex, int x)
14.PreparedStatement: setFetchSize(int rows)
15.PreparedStatement: setFloat(int parameterIndex, float x)
16.PreparedStatement: setLong(int parameterIndex, long x)
17.PreparedStatement: setNull(int parameterIndex, int sqlType)
18.PreparedStatement: setObject(int parameterIndex, Object x)
19.PreparedStatement: setRef(int parameterIndex, Ref x)
20.PreparedStatement: setShort(int parameterIndex, short x)
21.PreparedStatement: setString(int parameterIndex, String x)
22.PreparedStatement: setTime(int parameterIndex, Time x)
23.PreparedStatement: setTimestamp(int parameterIndex, Timestamp x)
24.PreparedStatement: setURL(int parameterIndex, URL x)