@Override
 public void updateArray(String columnName, Array x) throws SQLException {
   try {
     _res.updateArray(columnName, x);
   } catch (SQLException e) {
     handleException(e);
   }
 }
 @Override
 public void updateArray(int columnIndex, Array x) throws SQLException {
   try {
     _res.updateArray(columnIndex, x);
   } catch (SQLException e) {
     handleException(e);
   }
 }
Ejemplo n.º 3
0
	public void updateArray(String columnName, Array x) throws SQLException {
		rs.updateArray(columnName, x);
	}
Ejemplo n.º 4
0
	public void updateArray(int columnIndex, Array x) throws SQLException {
		rs.updateArray(columnIndex, x);
	}