/**
* Copyright (C) 2009-2013 FoundationDB, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.foundationdb.sql.embedded;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.*;
import java.util.Calendar;
import java.util.Map;
import com.foundationdb.qp.operator.RowCursor;
import com.foundationdb.qp.row.Row;
import com.foundationdb.server.error.ErrorCode;
import com.foundationdb.server.types.TInstance;
import com.foundationdb.server.types.value.ValueSource;
import com.foundationdb.sql.server.ServerJavaValues;
import com.foundationdb.sql.server.ServerQueryContext;
public class JDBCResultSet implements ResultSet
{
protected final JDBCStatement statement;
protected final JDBCResultSetMetaData metaData;
protected RowCursor cursor;
protected Row row;
private final EmbeddedQueryContext context;
private final Values values;
private JDBCWarning warnings;
protected JDBCResultSet(JDBCStatement statement, JDBCResultSetMetaData metaData,
RowCursor cursor) {
this.statement = statement;
this.metaData = metaData;
this.cursor = cursor;
assert cursor.isActive();
context = new EmbeddedQueryContext(this);
values = new Values();
}
protected class Values extends ServerJavaValues {
@Override
protected int size() {
return metaData.getColumns().size();
}
@Override
protected ServerQueryContext getContext() {
return context;
}
@Override
protected ValueSource getValue(int index) {
if (row == null) {
if (cursor == null)
throw JDBCException.wrapped("Already closed.", ErrorCode.BAD_CURSOR_STATE);
else
throw JDBCException.wrapped("Past end.", ErrorCode.BAD_CURSOR_STATE);
}
if ((index < 0) || (index >= row.rowType().nFields()))
throw JDBCException.wrapped("Column index out of bounds", ErrorCode.RESULTSET_INDEX_OUT_OF_BOUNDS);
return row.value(index);
}
@Override
protected ResultSet toResultSet(int index, Object cursor) {
if (cursor == null)
return null;
JDBCResultSet resultSet = new JDBCResultSet(statement, metaData.getNestedResultSet(index + 1), (RowCursor)cursor);
statement.secondaryResultSet(resultSet);
return resultSet;
}
@Override
protected TInstance getType(int index) {
return metaData.getColumn(index + 1).getType();
}
@Override
protected void setValue(int index, ValueSource source) {
throw new UnsupportedOperationException("Row update not supported");
}
}
protected void addWarning(JDBCWarning warning) {
if (warnings == null)
warnings = warning;
else
warnings.setNextWarning(warning);
}
/* Wrapper */
@Override
@SuppressWarnings("unchecked")
public <T> T unwrap(Class<T> iface) throws SQLException {
if (iface == RowCursor.class)
return (T)cursor;
if (iface == Row.class)
return (T)row;
throw new SQLException("Not supported");
}
@Override
public boolean isWrapperFor(Class<?> iface) throws SQLException {
if (iface == RowCursor.class)
return true;
if (iface == Row.class)
return true;
return false;
}
/* ResultSet */
@Override
public boolean next() throws SQLException {
try {
row = cursor.next();
return (row != null);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void close() throws SQLException {
statement.closingResultSet(this);
try {
if (cursor != null) {
cursor.close();
cursor = null;
}
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public boolean wasNull() throws SQLException {
return values.wasNull();
}
@Override
public String getString(int columnIndex) throws SQLException {
try {
return values.getString(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public boolean getBoolean(int columnIndex) throws SQLException {
try {
return values.getBoolean(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public byte getByte(int columnIndex) throws SQLException {
try {
return values.getByte(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public short getShort(int columnIndex) throws SQLException {
try {
return values.getShort(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public int getInt(int columnIndex) throws SQLException {
try {
return values.getInt(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public long getLong(int columnIndex) throws SQLException {
try {
return values.getLong(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public float getFloat(int columnIndex) throws SQLException {
try {
return values.getFloat(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public double getDouble(int columnIndex) throws SQLException {
try {
return values.getDouble(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Deprecated // like java.sql.ResultSet
@SuppressWarnings("deprecation")
@Override
public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
return getBigDecimal(columnIndex).setScale(scale);
}
@Override
public byte[] getBytes(int columnIndex) throws SQLException {
try {
return values.getBytes(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Date getDate(int columnIndex) throws SQLException {
try {
return values.getDate(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Time getTime(int columnIndex) throws SQLException {
try {
return values.getTime(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Timestamp getTimestamp(int columnIndex) throws SQLException {
try {
return values.getTimestamp(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public InputStream getAsciiStream(int columnIndex) throws SQLException {
try {
return values.getAsciiStream(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Deprecated // like java.sql.ResultSet
@SuppressWarnings("deprecation")
@Override
public InputStream getUnicodeStream(int columnIndex) throws SQLException {
try {
return values.getUnicodeStream(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public InputStream getBinaryStream(int columnIndex) throws SQLException {
try {
return values.getBinaryStream(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public String getString(String columnLabel) throws SQLException {
return getString(findColumn(columnLabel));
}
@Override
public boolean getBoolean(String columnLabel) throws SQLException {
return getBoolean(findColumn(columnLabel));
}
@Override
public byte getByte(String columnLabel) throws SQLException {
return getByte(findColumn(columnLabel));
}
@Override
public short getShort(String columnLabel) throws SQLException {
return getShort(findColumn(columnLabel));
}
@Override
public int getInt(String columnLabel) throws SQLException {
return getInt(findColumn(columnLabel));
}
@Override
public long getLong(String columnLabel) throws SQLException {
return getLong(findColumn(columnLabel));
}
@Override
public float getFloat(String columnLabel) throws SQLException {
return getFloat(findColumn(columnLabel));
}
@Override
public double getDouble(String columnLabel) throws SQLException {
return getDouble(findColumn(columnLabel));
}
@Deprecated // like java.sql.ResultSet
@SuppressWarnings("deprecation")
@Override
public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
return getBigDecimal(findColumn(columnLabel), scale);
}
@Override
public byte[] getBytes(String columnLabel) throws SQLException {
return getBytes(findColumn(columnLabel));
}
@Override
public Date getDate(String columnLabel) throws SQLException {
return getDate(findColumn(columnLabel));
}
@Override
public Time getTime(String columnLabel) throws SQLException {
return getTime(findColumn(columnLabel));
}
@Override
public Timestamp getTimestamp(String columnLabel) throws SQLException {
return getTimestamp(findColumn(columnLabel));
}
@Override
public InputStream getAsciiStream(String columnLabel) throws SQLException {
return getAsciiStream(findColumn(columnLabel));
}
@Deprecated // like java.sql.ResultSet#getBigDecimal(int, int)
@SuppressWarnings("deprecation")
@Override
public InputStream getUnicodeStream(String columnLabel) throws SQLException {
return getUnicodeStream(findColumn(columnLabel));
}
@Override
public InputStream getBinaryStream(String columnLabel) throws SQLException {
return getBinaryStream(findColumn(columnLabel));
}
@Override
public SQLWarning getWarnings() throws SQLException {
return warnings;
}
@Override
public void clearWarnings() throws SQLException {
warnings = null;
}
@Override
public String getCursorName() throws SQLException {
return null;
}
@Override
public JDBCResultSetMetaData getMetaData() throws SQLException {
return metaData;
}
@Override
public Object getObject(int columnIndex) throws SQLException {
try {
return values.getObject(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Object getObject(String columnLabel) throws SQLException {
return getObject(findColumn(columnLabel));
}
@Override
public int findColumn(String columnLabel) throws SQLException {
for (int i = 1; i <= metaData.getColumnCount(); i++) {
if (columnLabel.equalsIgnoreCase(metaData.getColumn(i).getName())) {
return i;
}
}
throw new JDBCException("Column not found: " + columnLabel, ErrorCode.NO_SUCH_COLUMN);
}
@Override
public Reader getCharacterStream(int columnIndex) throws SQLException {
try {
return values.getCharacterStream(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Reader getCharacterStream(String columnLabel) throws SQLException {
return getCharacterStream(findColumn(columnLabel));
}
@Override
public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
try {
return values.getBigDecimal(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
return getBigDecimal(findColumn(columnLabel));
}
@Override
public boolean isBeforeFirst() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isAfterLast() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isFirst() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isLast() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void beforeFirst() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void afterLast() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean first() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean last() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public int getRow() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean absolute( int row ) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean relative( int rows ) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean previous() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void setFetchDirection(int direction) throws SQLException {
if (direction != FETCH_FORWARD)
throw new SQLFeatureNotSupportedException();
}
@Override
public int getFetchDirection() throws SQLException {
return FETCH_FORWARD;
}
@Override
public void setFetchSize(int rows) throws SQLException {
}
@Override
public int getFetchSize() throws SQLException {
return 1;
}
@Override
public int getType() throws SQLException {
return TYPE_FORWARD_ONLY;
}
@Override
public int getConcurrency() throws SQLException {
return CONCUR_READ_ONLY;
}
@Override
public boolean rowUpdated() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean rowInserted() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean rowDeleted() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void updateNull(int columnIndex) throws SQLException {
try {
values.setNull(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateBoolean(int columnIndex, boolean x) throws SQLException {
try {
values.setBoolean(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateByte(int columnIndex, byte x) throws SQLException {
try {
values.setByte(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateShort(int columnIndex, short x) throws SQLException {
try {
values.setShort(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateInt(int columnIndex, int x) throws SQLException {
try {
values.setInt(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateLong(int columnIndex, long x) throws SQLException {
try {
values.setLong(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateFloat(int columnIndex, float x) throws SQLException {
try {
values.setFloat(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateDouble(int columnIndex, double x) throws SQLException {
try {
values.setDouble(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
try {
values.setBigDecimal(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateString(int columnIndex, String x) throws SQLException {
try {
values.setString(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateBytes(int columnIndex, byte x[]) throws SQLException {
try {
values.setBytes(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateDate(int columnIndex, Date x) throws SQLException {
try {
values.setDate(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateTime(int columnIndex, Time x) throws SQLException {
try {
values.setTime(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
try {
values.setTimestamp(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
try {
values.setAsciiStream(columnIndex - 1, x, length);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
try {
values.setBinaryStream(columnIndex - 1, x, length);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
try {
values.setCharacterStream(columnIndex - 1, x, length);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
updateObject(columnIndex, x);
}
@Override
public void updateObject(int columnIndex, Object x) throws SQLException {
try {
values.setObject(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateNull(String columnLabel) throws SQLException {
updateNull(findColumn(columnLabel));
}
@Override
public void updateBoolean(String columnLabel, boolean x) throws SQLException {
updateBoolean(findColumn(columnLabel), x);
}
@Override
public void updateByte(String columnLabel, byte x) throws SQLException {
updateByte(findColumn(columnLabel), x);
}
@Override
public void updateShort(String columnLabel, short x) throws SQLException {
updateShort(findColumn(columnLabel), x);
}
@Override
public void updateInt(String columnLabel, int x) throws SQLException {
updateInt(findColumn(columnLabel), x);
}
@Override
public void updateLong(String columnLabel, long x) throws SQLException {
updateLong(findColumn(columnLabel), x);
}
@Override
public void updateFloat(String columnLabel, float x) throws SQLException {
updateFloat(findColumn(columnLabel), x);
}
@Override
public void updateDouble(String columnLabel, double x) throws SQLException {
updateDouble(findColumn(columnLabel), x);
}
@Override
public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {
updateBigDecimal(findColumn(columnLabel), x);
}
@Override
public void updateString(String columnLabel, String x) throws SQLException {
updateString(findColumn(columnLabel), x);
}
@Override
public void updateBytes(String columnLabel, byte x[]) throws SQLException {
updateBytes(findColumn(columnLabel), x);
}
@Override
public void updateDate(String columnLabel, Date x) throws SQLException {
updateDate(findColumn(columnLabel), x);
}
@Override
public void updateTime(String columnLabel, Time x) throws SQLException {
updateTime(findColumn(columnLabel), x);
}
@Override
public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {
updateTimestamp(findColumn(columnLabel), x);
}
@Override
public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
updateAsciiStream(findColumn(columnLabel), x, length);
}
@Override
public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
updateBinaryStream(findColumn(columnLabel), x, length);
}
@Override
public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {
updateCharacterStream(findColumn(columnLabel), reader, length);
}
@Override
public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {
updateObject(findColumn(columnLabel), x, scaleOrLength);
}
@Override
public void updateObject(String columnLabel, Object x) throws SQLException {
updateObject(findColumn(columnLabel), x);
}
@Override
public void insertRow() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void updateRow() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void deleteRow() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void refreshRow() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void cancelRowUpdates() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void moveToInsertRow() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public void moveToCurrentRow() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public Statement getStatement() throws SQLException {
return statement;
}
@Override
public Object getObject(int columnIndex, Map<String,Class<?>> map) throws SQLException {
return getObject(columnIndex);
}
@Override
public Ref getRef(int columnIndex) throws SQLException {
try {
return values.getRef(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Blob getBlob(int columnIndex) throws SQLException {
try {
return values.getBlob(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Clob getClob(int columnIndex) throws SQLException {
try {
return values.getClob(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Array getArray(int columnIndex) throws SQLException {
try {
return values.getArray(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Object getObject(String columnLabel, Map<String,Class<?>> map) throws SQLException {
return getObject(findColumn(columnLabel), map);
}
@Override
public Ref getRef(String columnLabel) throws SQLException {
return getRef(findColumn(columnLabel));
}
@Override
public Blob getBlob(String columnLabel) throws SQLException {
return getBlob(findColumn(columnLabel));
}
@Override
public Clob getClob(String columnLabel) throws SQLException {
return getClob(findColumn(columnLabel));
}
@Override
public Array getArray(String columnLabel) throws SQLException {
return getArray(findColumn(columnLabel));
}
@Override
public Date getDate(int columnIndex, Calendar cal) throws SQLException {
try {
return values.getDate(columnIndex - 1, cal);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Date getDate(String columnLabel, Calendar cal) throws SQLException {
return getDate(findColumn(columnLabel), cal);
}
@Override
public Time getTime(int columnIndex, Calendar cal) throws SQLException {
try {
return values.getTime(columnIndex - 1, cal);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Time getTime(String columnLabel, Calendar cal) throws SQLException {
return getTime(findColumn(columnLabel), cal);
}
@Override
public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
try {
return values.getTimestamp(columnIndex - 1, cal);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
return getTimestamp(findColumn(columnLabel), cal);
}
@Override
public URL getURL(int columnIndex) throws SQLException {
try {
return values.getURL(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public URL getURL(String columnLabel) throws SQLException {
return getURL(findColumn(columnLabel));
}
@Override
public void updateRef(int columnIndex, Ref x) throws SQLException {
try {
values.setRef(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateRef(String columnLabel, Ref x) throws SQLException {
updateRef(findColumn(columnLabel), x);
}
@Override
public void updateBlob(int columnIndex, Blob x) throws SQLException {
try {
values.setBlob(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateBlob(String columnLabel, Blob x) throws SQLException {
updateBlob(findColumn(columnLabel), x);
}
@Override
public void updateClob(int columnIndex, Clob x) throws SQLException {
try {
values.setClob(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateClob(String columnLabel, Clob x) throws SQLException {
updateClob(findColumn(columnLabel), x);
}
@Override
public void updateArray(int columnIndex, Array x) throws SQLException {
try {
values.setArray(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateArray(String columnLabel, Array x) throws SQLException {
updateArray(findColumn(columnLabel), x);
}
@Override
public RowId getRowId(int columnIndex) throws SQLException {
try {
return values.getRowId(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public RowId getRowId(String columnLabel) throws SQLException {
return getRowId(findColumn(columnLabel));
}
@Override
public void updateRowId(int columnIndex, RowId x) throws SQLException {
try {
values.setRowId(columnIndex - 1, x);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateRowId(String columnLabel, RowId x) throws SQLException {
updateRowId(findColumn(columnLabel), x);
}
@Override
public int getHoldability() throws SQLException {
return CLOSE_CURSORS_AT_COMMIT;
}
@Override
public boolean isClosed() throws SQLException {
return (cursor == null);
}
@Override
public void updateNString(int columnIndex, String nString) throws SQLException {
try {
values.setNString(columnIndex - 1, nString);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateNString(String columnLabel, String nString) throws SQLException {
updateNString(findColumn(columnLabel), nString);
}
@Override
public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
try {
values.setNClob(columnIndex - 1, nClob);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
updateNClob(findColumn(columnLabel), nClob);
}
@Override
public NClob getNClob(int columnIndex) throws SQLException {
try {
return values.getNClob(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public NClob getNClob(String columnLabel) throws SQLException {
return getNClob(findColumn(columnLabel));
}
@Override
public SQLXML getSQLXML(int columnIndex) throws SQLException {
try {
return values.getSQLXML(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public SQLXML getSQLXML(String columnLabel) throws SQLException {
return getSQLXML(findColumn(columnLabel));
}
@Override
public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
try {
values.setSQLXML(columnIndex - 1, xmlObject);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
updateSQLXML(findColumn(columnLabel), xmlObject);
}
@Override
public String getNString(int columnIndex) throws SQLException {
try {
return values.getNString(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public String getNString(String columnLabel) throws SQLException {
return getNString(findColumn(columnLabel));
}
@Override
public Reader getNCharacterStream(int columnIndex) throws SQLException {
try {
return values.getNCharacterStream(columnIndex - 1);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public Reader getNCharacterStream(String columnLabel) throws SQLException {
return getNCharacterStream(findColumn(columnLabel));
}
@Override
public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
try {
values.setNCharacterStream(columnIndex - 1, x, length);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
updateNCharacterStream(findColumn(columnLabel), reader, length);
}
@Override
public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
try {
values.setAsciiStream(columnIndex - 1, x, length);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
try {
values.setBinaryStream(columnIndex - 1, x, length);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
try {
values.setCharacterStream(columnIndex - 1, x, length);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
updateAsciiStream(findColumn(columnLabel), x, length);
}
@Override
public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
updateBinaryStream(findColumn(columnLabel), x, length);
}
@Override
public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
updateCharacterStream(findColumn(columnLabel), reader, length);
}
@Override
public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
try {
values.setBlob(columnIndex - 1, inputStream, length);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
updateBlob(findColumn(columnLabel), inputStream, length);
}
@Override
public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
try {
values.setClob(columnIndex - 1, reader, length);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
updateClob(findColumn(columnLabel), reader, length);
}
@Override
public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
try {
values.setNClob(columnIndex - 1, reader, length);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
updateNClob(findColumn(columnLabel), reader, length);
}
@Override
public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
try {
values.setNCharacterStream(columnIndex - 1, x);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
updateNCharacterStream(findColumn(columnLabel), reader);
}
@Override
public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
try {
values.setAsciiStream(columnIndex - 1, x);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
try {
values.setBinaryStream(columnIndex - 1, x);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
try {
values.setCharacterStream(columnIndex - 1, x);
}
catch (IOException ex) {
throw new JDBCException(ex);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
updateAsciiStream(findColumn(columnLabel), x);
}
@Override
public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
updateBinaryStream(findColumn(columnLabel), x);
}
@Override
public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
updateCharacterStream(findColumn(columnLabel), reader);
}
@Override
public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
try {
values.setBlob(columnIndex - 1, inputStream);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
updateBlob(findColumn(columnLabel), inputStream);
}
@Override
public void updateClob(int columnIndex, Reader reader) throws SQLException {
try {
values.setClob(columnIndex - 1, reader);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateClob(String columnLabel, Reader reader) throws SQLException {
updateClob(findColumn(columnLabel), reader);
}
@Override
public void updateNClob(int columnIndex, Reader reader) throws SQLException {
try {
values.setNClob(columnIndex - 1, reader);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public void updateNClob(String columnLabel, Reader reader) throws SQLException {
updateNClob(findColumn(columnLabel), reader);
}
@Override
@SuppressWarnings("unchecked")
public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
try {
return (T)values.getObject(columnIndex - 1, type);
}
catch (RuntimeException ex) {
throw JDBCException.throwUnwrapped(ex);
}
}
@Override
public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
return getObject(findColumn(columnLabel), type);
}
public boolean hasRow() {
return row != null;
}
}