public void setClob(String parameterName, Reader reader, long length) throws SQLException {
   checkOpen();
   try {
     ((CallableStatement) _stmt).setClob(parameterName, reader, length);
   } catch (SQLException e) {
     handleException(e);
   }
 }
 public void setClob(String parameterName, Clob clob) throws SQLException {
   checkOpen();
   try {
     ((CallableStatement) _stmt).setClob(parameterName, clob);
   } catch (SQLException e) {
     handleException(e);
   }
 }
Beispiel #3
0
  @Override
  public void setClob(String parameterName, Reader reader) throws SQLException {
    try {
      _cstmt.setClob(parameterName, reader);
    } catch (SQLException e) {
      onSqlException(e);

      throw e;
    } catch (RuntimeException e) {
      onRuntimeException(e);

      throw e;
    }
  }
 /** @see java.sql.PreparedStatement#setClob(int, java.sql.Clob) */
 public void setClob(int i, Clob x) throws SQLException {
   original.setClob(i, x);
 }
 public void setClob(String parameterName, Reader reader, long length) throws SQLException {
   passThru.setClob(parameterName, reader, length);
 }
 public void setClob(String parameterName, Clob x) throws SQLException {
   passThru.setClob(parameterName, x);
 }