コード例 #1
0
 public void setNClob(String parameterName, Reader reader, long length) throws SQLException {
   checkOpen();
   try {
     ((CallableStatement) _stmt).setNClob(parameterName, reader, length);
   } catch (SQLException e) {
     handleException(e);
   }
 }
コード例 #2
0
 public void setNClob(String parameterName, NClob value) throws SQLException {
   checkOpen();
   try {
     ((CallableStatement) _stmt).setNClob(parameterName, value);
   } catch (SQLException e) {
     handleException(e);
   }
 }
コード例 #3
0
  @Override
  public void setNClob(String parameterName, Reader reader) throws SQLException {
    try {
      _cstmt.setNClob(parameterName, reader);
    } catch (SQLException e) {
      onSqlException(e);

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

      throw e;
    }
  }
コード例 #4
0
 public void setNClob(String parameterName, Reader reader, long length) throws SQLException {
   passThru.setNClob(parameterName, reader, length);
 }
コード例 #5
0
 public void setNClob(String parameterName, NClob value) throws SQLException {
   passThru.setNClob(parameterName, value);
 }