java.sql.ResultSet.updateNClob()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(4.5k)|赞(0)|评价(0)|浏览(109)

本文整理了Java中java.sql.ResultSet.updateNClob方法的一些代码示例,展示了ResultSet.updateNClob的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ResultSet.updateNClob方法的具体详情如下:
包路径:java.sql.ResultSet
类名称:ResultSet
方法名:updateNClob

ResultSet.updateNClob介绍

[英]Updates the value at the 1-based columnIndex. The underlying database isn't changed until the next row update or insert operation.
[中]更新基于1的列索引处的值。在下一次行更新或插入操作之前,不会更改基础数据库。

代码示例

代码示例来源:origin: querydsl/querydsl

@Override
public void updateNClob(String columnLabel, NClob nClob)
    throws SQLException {
  rs.updateNClob(columnLabel, nClob);
}

代码示例来源:origin: querydsl/querydsl

@Override
public void updateNClob(String columnLabel, Reader reader, long length)
    throws SQLException {
  rs.updateNClob(columnLabel, reader, length);
}

代码示例来源:origin: querydsl/querydsl

@Override
public void updateNClob(String columnLabel, Reader reader)
    throws SQLException {
  rs.updateNClob(columnLabel, reader);
}

代码示例来源:origin: querydsl/querydsl

@Override
public void updateNClob(int columnIndex, Reader reader, long length)
    throws SQLException {
  rs.updateNClob(columnIndex, reader, length);
}

代码示例来源:origin: alibaba/druid

@Override
public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
  try {
    rs.updateNClob(columnLabel, reader, length);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

代码示例来源:origin: alibaba/druid

@Override
public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
  try {
    rs.updateNClob(columnIndex, nClob);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

代码示例来源:origin: alibaba/druid

@Override
public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
  try {
    rs.updateNClob(columnLabel, nClob);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

代码示例来源:origin: alibaba/druid

@Override
public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
  try {
    rs.updateNClob(columnIndex, reader, length);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

代码示例来源:origin: alibaba/druid

@Override
public void updateNClob(int columnIndex, Reader reader) throws SQLException {
  try {
    rs.updateNClob(columnIndex, reader);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

代码示例来源:origin: alibaba/druid

@Override
public void updateNClob(String columnLabel, Reader reader) throws SQLException {
  try {
    rs.updateNClob(columnLabel, reader);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

代码示例来源:origin: apache/ignite

@Override public void run() throws Exception {
    rs.updateNClob(1, (NClob)null);
  }
});

代码示例来源:origin: apache/ignite

@Override public void run() throws Exception {
    rs.updateNClob("id", (NClob)null);
  }
});

代码示例来源:origin: apache/ignite

@Override public void run() throws Exception {
    rs.updateNClob(1, (Reader)null);
  }
});

代码示例来源:origin: apache/ignite

@Override public void run() throws Exception {
    rs.updateNClob("id", null, 0L);
  }
});

代码示例来源:origin: alibaba/druid

@Override
public void resultSet_updateNClob(ResultSetProxy resultSet, int columnIndex, Reader reader) throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateNClob(this, resultSet, columnIndex, reader);
    return;
  }
  resultSet.getResultSetRaw().updateNClob(columnIndex, reader);
}

代码示例来源:origin: alibaba/druid

@Override
public void resultSet_updateNClob(ResultSetProxy resultSet, int columnIndex, Reader reader, long length)
                                                    throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateNClob(this, resultSet, columnIndex, reader, length);
    return;
  }
  resultSet.getResultSetRaw().updateNClob(columnIndex, reader, length);
}

代码示例来源:origin: alibaba/druid

@Override
public void resultSet_updateNClob(ResultSetProxy resultSet, String columnLabel, NClob x) throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateNClob(this, resultSet, columnLabel, x);
    return;
  }
  resultSet.getResultSetRaw()
      .updateNClob(columnLabel, x);
}

代码示例来源:origin: alibaba/druid

@Override
public void resultSet_updateNClob(ResultSetProxy resultSet, String columnLabel, Reader reader, long length)
                                                      throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateNClob(this, resultSet, columnLabel, reader, length);
    return;
  }
  resultSet.getResultSetRaw().updateNClob(columnLabel, reader, length);
}

代码示例来源:origin: alibaba/druid

@Override
public void resultSet_updateNClob(ResultSetProxy resultSet, int columnIndex, NClob x) throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateNClob(this, resultSet, columnIndex, x);
    return;
  }
  resultSet.getResultSetRaw().updateNClob(columnIndex, x);
}

代码示例来源:origin: alibaba/druid

@Override
public void resultSet_updateNClob(ResultSetProxy resultSet, String columnLabel, Reader reader) throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateNClob(this, resultSet, columnLabel, reader);
    return;
  }
  resultSet.getResultSetRaw().updateNClob(columnLabel, reader);
}

相关文章

微信公众号

最新文章

更多

ResultSet类方法