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

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

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

ResultSet.updateBytes介绍

[英]Updates a column specified by a column index with a byte array value.
[中]用字节数组值更新列索引指定的列。

代码示例

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

@Override
public void updateBytes(String columnLabel, byte[] x) throws SQLException {
  rs.updateBytes(columnLabel, x);
}

代码示例来源:origin: codingapi/tx-lcn

@Override
public void updateBytes(String columnLabel, byte[] x) throws SQLException {
 delegate.updateBytes(columnLabel, x);
}

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

@Override
public void updateBytes(int columnIndex, byte[] x) throws SQLException {
  rs.updateBytes(columnIndex, x);
}

代码示例来源:origin: codingapi/tx-lcn

@Override
public void updateBytes(int columnIndex, byte[] x) throws SQLException {
 delegate.updateBytes(columnIndex, x);
}

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

@Override
public void updateBytes(int columnIndex, byte x[]) throws SQLException {
  try {
    rs.updateBytes(columnIndex, x);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

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

@Override
public void updateBytes(String columnLabel, byte x[]) throws SQLException {
  try {
    rs.updateBytes(columnLabel, x);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

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

@Override public void run() throws Exception {
    rs.updateBytes(1, new byte[]{});
  }
});

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

@Override public void run() throws Exception {
    rs.updateBytes("id", new byte[]{});
  }
});

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

@Override
public void resultSet_updateBytes(ResultSetProxy resultSet, String columnLabel, byte x[]) throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateBytes(this, resultSet, columnLabel, x);
    return;
  }
  resultSet.getResultSetRaw().updateBytes(columnLabel, x);
}

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

@Override
public void resultSet_updateBytes(ResultSetProxy resultSet, int columnIndex, byte[] x) throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateBytes(this, resultSet, columnIndex, x);
    return;
  }
  resultSet.getResultSetRaw().updateBytes(columnIndex, x);
}

代码示例来源:origin: Meituan-Dianping/Zebra

@Override
public void updateBytes(int columnIndex, byte[] x) throws SQLException {
  innerResultSet.updateBytes(columnIndex, x);
}

代码示例来源:origin: Meituan-Dianping/Zebra

@Override
public void updateBytes(int columnIndex, byte[] x) throws SQLException {
  innerResultSet.updateBytes(columnIndex, x);
}

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

@Override
public void updateBytes(String columnLabel, byte[] x) throws SQLException {
 delegate.updateBytes(columnLabel, x);
}

代码示例来源:origin: Meituan-Dianping/Zebra

@Override
public void updateBytes(String columnLabel, byte[] x) throws SQLException {
  innerResultSet.updateBytes(columnLabel, x);
}

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

@Override
public void updateBytes(int columnIndex, byte[] x) throws SQLException {
 delegate.updateBytes(columnIndex, x);
}

代码示例来源:origin: Meituan-Dianping/Zebra

@Override
public void updateBytes(String columnLabel, byte[] x) throws SQLException {
  innerResultSet.updateBytes(columnLabel, x);
}

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

@Override
public void updateBytes(int columnIndex, byte x[]) throws SQLException {
  try {
    rs.updateBytes(columnIndex, x);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

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

@Override
public void updateBytes(String columnLabel, byte x[]) throws SQLException {
  try {
    rs.updateBytes(columnLabel, x);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

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

@Override
public void resultSet_updateBytes(ResultSetProxy resultSet, int columnIndex, byte[] x) throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateBytes(this, resultSet, columnIndex, x);
    return;
  }
  resultSet.getResultSetRaw().updateBytes(columnIndex, x);
}

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

@Override
public void resultSet_updateBytes(ResultSetProxy resultSet, String columnLabel, byte x[]) throws SQLException {
  if (this.pos < filterSize) {
    nextFilter().resultSet_updateBytes(this, resultSet, columnLabel, x);
    return;
  }
  resultSet.getResultSetRaw().updateBytes(columnLabel, x);
}

相关文章

微信公众号

最新文章

更多

ResultSet类方法