Open Source Repository

Home /hibernate/hibernate-3.2.7.ga | Repository Home



org/hibernate/jdbc/ResultSetWrapper.java
// $Id$
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
 * indicated by the @author tags or express copyright attribution
 * statements applied by the authors.  All third-party contributions are
 * distributed under license by Red Hat Middleware LLC.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * 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 Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.hibernate.jdbc;

import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Date;
import java.sql.Ref;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Map;

/**
 * A ResultSet delegate, responsible for locally caching the columnName-to-columnIndex
 * resolution that has been found to be inefficient in a few vendor's drivers (i.e., Oracle
 * and Postgres).
 *
 @author Steve Ebersole
 */
public class ResultSetWrapper implements ResultSet {

  private ResultSet rs;
  private ColumnNameCache columnNameCache;

  public ResultSetWrapper(ResultSet resultSet, ColumnNameCache columnNameCache) {
    this.rs = resultSet;
    this.columnNameCache = columnNameCache;
  }

  /*package*/ ResultSet getTarget() {
    return rs;
  }


  // ResultSet impl ("overridden") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  /**
   * Overridden version to utilize local caching of the column indexes by name
   * to improve performance for those drivers which are known to not support
   * such caching by themselves.
   <p/>
   * This implementation performs the caching based on the upper case version
   * of the given column name.
   *
   @param columnName The column name to resolve into an index.
   @return The column index corresponding to the given column name.
   @throws SQLException - if the ResultSet object does not contain
   * columnName or a database access error occurs
   */
  public int findColumn(String columnNamethrows SQLException {
    return columnNameCache.getIndexForColumnNamecolumnName, this );
  }

  public Array getArray(String colNamethrows SQLException {
    return rs.getArrayfindColumn(colName) );
  }

  public void updateArray(String columnName, Array xthrows SQLException {
    rs.updateArrayfindColumn(columnName), x );
  }

  public InputStream getAsciiStream(String columnNamethrows SQLException {
    return rs.getAsciiStreamfindColumn(columnName) );
  }

  public void updateAsciiStream(String columnName, InputStream x, int lengththrows SQLException {
    rs.updateAsciiStreamfindColumn(columnName), x, length );
  }

  public BigDecimal getBigDecimal(String columnNamethrows SQLException {
    return rs.getBigDecimalfindColumn(columnName) );
  }

  public BigDecimal getBigDecimal(String columnName, int scalethrows SQLException {
    return rs.getBigDecimalfindColumn(columnName), scale );
  }

  public void updateBigDecimal(String columnName, BigDecimal xthrows SQLException {
    rs.updateBigDecimalfindColumn(columnName), x );
  }

  public InputStream getBinaryStream(String columnNamethrows SQLException {
    return rs.getBinaryStreamfindColumn(columnName) );
  }

  public void updateBinaryStream(String columnName, InputStream x, int lengththrows SQLException {
    rs.updateBinaryStreamfindColumn(columnName), x, length );
  }

  public Blob getBlob(String columnNamethrows SQLException {
    return rs.getBlobfindColumn(columnName) );
  }

  public void updateBlob(String columnName, Blob xthrows SQLException {
    rs.updateBlobfindColumn(columnName), x );
  }

  public boolean getBoolean(String columnNamethrows SQLException {
    return rs.getBooleanfindColumn(columnName) );
  }

  public void updateBoolean(String columnName, boolean xthrows SQLException {
    rs.updateBooleanfindColumn(columnName), x );
  }

  public byte getByte(String columnNamethrows SQLException {
    return rs.getBytefindColumn(columnName) );
  }

  public void updateByte(String columnName, byte xthrows SQLException {
    rs.updateBytefindColumn(columnName), x );
  }

  public byte[] getBytes(String columnNamethrows SQLException {
    return rs.getBytesfindColumn(columnName) );
  }

  public void updateBytes(String columnName, byte[] xthrows SQLException {
    rs.updateBytesfindColumn(columnName), x );
  }

  public Reader getCharacterStream(String columnNamethrows SQLException {
    return rs.getCharacterStreamfindColumn(columnName) );
  }

  public void updateCharacterStream(String columnName, Reader x, int lengththrows SQLException {
    rs.updateCharacterStreamfindColumn(columnName), x, length );
  }

  public Clob getClob(String columnNamethrows SQLException {
    return rs.getClobfindColumn(columnName) );
  }

  public void updateClob(String columnName, Clob xthrows SQLException {
    rs.updateClobfindColumn(columnName), x );
  }

  public Date getDate(String columnNamethrows SQLException {
    return rs.getDatefindColumn(columnName) );
  }

  public Date getDate(String columnName, Calendar calthrows SQLException {
    return rs.getDatefindColumn(columnName), cal );
  }

  public void updateDate(String columnName, Date xthrows SQLException {
    rs.updateDatefindColumn(columnName), x );
  }

  public double getDouble(String columnNamethrows SQLException {
    return rs.getDoublefindColumn(columnName) );
  }

  public void updateDouble(String columnName, double xthrows SQLException {
    rs.updateDoublefindColumn(columnName), x );
  }

  public float getFloat(String columnNamethrows SQLException {
    return rs.getFloatfindColumn(columnName) );
  }

  public void updateFloat(String columnName, float xthrows SQLException {
    rs.updateFloatfindColumn(columnName), x );
  }

  public int getInt(String columnNamethrows SQLException {
    return rs.getIntfindColumn(columnName) );
  }

  public void updateInt(String columnName, int xthrows SQLException {
    rs.updateIntfindColumn(columnName), x );
  }

  public long getLong(String columnNamethrows SQLException {
    return rs.getLongfindColumn(columnName) );
  }

  public void updateLong(String columnName, long xthrows SQLException {
    rs.updateLongfindColumn(columnName), x );
  }

  public Object getObject(String columnNamethrows SQLException {
    return rs.getObjectfindColumn(columnName) );
  }

  public Object getObject(String columnName, Map mapthrows SQLException {
    return rs.getObjectfindColumn(columnName), map );
  }

  public void updateObject(String columnName, Object xthrows SQLException {
    rs.updateObjectfindColumn(columnName), x );
  }

  public void updateObject(String columnName, Object x, int scalethrows SQLException {
    rs.updateObjectfindColumn(columnName), x, scale );
  }

  public Ref getRef(String columnNamethrows SQLException {
    return rs.getReffindColumn(columnName) );
  }

  public void updateRef(String columnName, Ref xthrows SQLException {
    rs.updateReffindColumn(columnName), x );
  }

  public short getShort(String columnNamethrows SQLException {
    return rs.getShortfindColumn(columnName) );
  }

  public void updateShort(String columnName, short xthrows SQLException {
    rs.updateShortfindColumn(columnName), x );
  }

  public String getString(String columnNamethrows SQLException {
    return rs.getStringfindColumn(columnName) );
  }

  public void updateString(String columnName, String xthrows SQLException {
    rs.updateStringfindColumn(columnName), x );
  }

  public Time getTime(String columnNamethrows SQLException {
    return rs.getTimefindColumn(columnName) );
  }

  public Time getTime(String columnName, Calendar calthrows SQLException {
    return rs.getTimefindColumn(columnName), cal );
  }

  public void updateTime(String columnName, Time xthrows SQLException {
    rs.updateTimefindColumn(columnName), x );
  }

  public Timestamp getTimestamp(String columnNamethrows SQLException {
    return rs.getTimestampfindColumn(columnName) );
  }

  public void updateTimestamp(String columnName, Timestamp xthrows SQLException {
    rs.updateTimestampfindColumn(columnName), x );
  }

  public Timestamp getTimestamp(String columnName, Calendar calthrows SQLException {
    return rs.getTimestampfindColumn(columnName), cal );
  }

  public InputStream getUnicodeStream(String columnNamethrows SQLException {
    return rs.getUnicodeStreamfindColumn(columnName) );
  }

  public URL getURL(String columnNamethrows SQLException {
    return rs.getURLfindColumn(columnName) );
  }

  public void updateNull(String columnNamethrows SQLException {
    rs.updateNullfindColumn(columnName) );
  }


  // ResultSet impl (delegated) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  public int getConcurrency() throws SQLException {
    return rs.getConcurrency();
  }

  public int getFetchDirection() throws SQLException {
    return rs.getFetchDirection();
  }

  public int getFetchSize() throws SQLException {
    return rs.getFetchSize();
  }

  public int getRow() throws SQLException {
    return rs.getRow();
  }

  public int getType() throws SQLException {
    return rs.getType();
  }

  public void afterLast() throws SQLException {
    rs.afterLast();
  }

  public void beforeFirst() throws SQLException {
    rs.beforeFirst();
  }

  public void cancelRowUpdates() throws SQLException {
    rs.cancelRowUpdates();
  }

  public void clearWarnings() throws SQLException {
    rs.clearWarnings();
  }

  public void close() throws SQLException {
    rs.close();
  }

  public void deleteRow() throws SQLException {
    rs.deleteRow();
  }

  public void insertRow() throws SQLException {
    rs.insertRow();
  }

  public void moveToCurrentRow() throws SQLException {
    rs.moveToCurrentRow();
  }

  public void moveToInsertRow() throws SQLException {
    rs.moveToInsertRow();
  }

  public void refreshRow() throws SQLException {
    rs.refreshRow();
  }

  public void updateRow() throws SQLException {
    rs.updateRow();
  }

  public boolean first() throws SQLException {
    return rs.first();
  }

  public boolean isAfterLast() throws SQLException {
    return rs.isAfterLast();
  }

  public boolean isBeforeFirst() throws SQLException {
    return rs.isBeforeFirst();
  }

  public boolean isFirst() throws SQLException {
    return rs.isFirst();
  }

  public boolean isLast() throws SQLException {
    return rs.isLast();
  }

  public boolean last() throws SQLException {
    return rs.last();
  }

  public boolean next() throws SQLException {
    return rs.next();
  }

  public boolean previous() throws SQLException {
    return rs.previous();
  }

  public boolean rowDeleted() throws SQLException {
    return rs.rowDeleted();
  }

  public boolean rowInserted() throws SQLException {
    return rs.rowInserted();
  }

  public boolean rowUpdated() throws SQLException {
    return rs.rowUpdated();
  }

  public boolean wasNull() throws SQLException {
    return rs.wasNull();
  }

  public byte getByte(int columnIndexthrows SQLException {
    return rs.getByte(columnIndex);
  }

  public double getDouble(int columnIndexthrows SQLException {
    return rs.getDouble(columnIndex);
  }

  public float getFloat(int columnIndexthrows SQLException {
    return rs.getFloat(columnIndex);
  }

  public int getInt(int columnIndexthrows SQLException {
    return rs.getInt(columnIndex);
  }

  public long getLong(int columnIndexthrows SQLException {
    return rs.getLong(columnIndex);
  }

  public short getShort(int columnIndexthrows SQLException {
    return rs.getShort(columnIndex);
  }

  public void setFetchDirection(int directionthrows SQLException {
    rs.setFetchDirection(direction);
  }

  public void setFetchSize(int rowsthrows SQLException {
    rs.setFetchSize(rows);
  }

  public void updateNull(int columnIndexthrows SQLException {
    rs.updateNull(columnIndex);
  }

  public boolean absolute(int rowthrows SQLException {
    return rs.absolute(row);
  }

  public boolean getBoolean(int columnIndexthrows SQLException {
    return rs.getBoolean(columnIndex);
  }

  public boolean relative(int rowsthrows SQLException {
    return rs.relative(rows);
  }

  public byte[] getBytes(int columnIndexthrows SQLException {
    return rs.getBytes(columnIndex);
  }

  public void updateByte(int columnIndex, byte xthrows SQLException {
    rs.updateByte(columnIndex, x);
  }

  public void updateDouble(int columnIndex, double xthrows SQLException {
    rs.updateDouble(columnIndex, x);
  }

  public void updateFloat(int columnIndex, float xthrows SQLException {
    rs.updateFloat(columnIndex, x);
  }

  public void updateInt(int columnIndex, int xthrows SQLException {
    rs.updateInt(columnIndex, x);
  }

  public void updateLong(int columnIndex, long xthrows SQLException {
    rs.updateLong(columnIndex, x);
  }

  public void updateShort(int columnIndex, short xthrows SQLException {
    rs.updateShort(columnIndex, x);
  }

  public void updateBoolean(int columnIndex, boolean xthrows SQLException {
    rs.updateBoolean(columnIndex, x);
  }

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

  public InputStream getAsciiStream(int columnIndexthrows SQLException {
    return rs.getAsciiStream(columnIndex);
  }

  public InputStream getBinaryStream(int columnIndexthrows SQLException {
    return rs.getBinaryStream(columnIndex);
  }

  public InputStream getUnicodeStream(int columnIndexthrows SQLException {
    return rs.getUnicodeStream(columnIndex);
  }

  public void updateAsciiStream(int columnIndex, InputStream x, int lengththrows SQLException {
    rs.updateAsciiStream(columnIndex, x, length);
  }

  public void updateBinaryStream(int columnIndex, InputStream x, int lengththrows SQLException {
    rs.updateBinaryStream(columnIndex, x, length);
  }

  public Reader getCharacterStream(int columnIndexthrows SQLException {
    return rs.getCharacterStream(columnIndex);
  }

  public void updateCharacterStream(int columnIndex, Reader x, int lengththrows SQLException {
    rs.updateCharacterStream(columnIndex, x, length);
  }

  public Object getObject(int columnIndexthrows SQLException {
    return rs.getObject(columnIndex);
  }

  public void updateObject(int columnIndex, Object xthrows SQLException {
    rs.updateObject(columnIndex, x);
  }

  public void updateObject(int columnIndex, Object x, int scalethrows SQLException {
    rs.updateObject(columnIndex, x, scale);
  }

  public String getCursorName() throws SQLException {
    return rs.getCursorName();
  }

  public String getString(int columnIndexthrows SQLException {
    return rs.getString(columnIndex);
  }

  public void updateString(int columnIndex, String xthrows SQLException {
    rs.updateString(columnIndex, x);
  }

  public BigDecimal getBigDecimal(int columnIndexthrows SQLException {
    return rs.getBigDecimal(columnIndex);
  }

  public BigDecimal getBigDecimal(int columnIndex, int scalethrows SQLException {
    return rs.getBigDecimal(columnIndex, scale);
  }

  public void updateBigDecimal(int columnIndex, BigDecimal xthrows SQLException {
    rs.updateBigDecimal(columnIndex, x);
  }

  public URL getURL(int columnIndexthrows SQLException {
    return rs.getURL(columnIndex);
  }

  public Array getArray(int columnIndexthrows SQLException {
    return rs.getArray(columnIndex);
  }

  public void updateArray(int columnIndex, Array xthrows SQLException {
    rs.updateArray(columnIndex, x);
  }

  public Blob getBlob(int columnIndexthrows SQLException {
    return rs.getBlob(columnIndex);
  }

  public void updateBlob(int columnIndex, Blob xthrows SQLException {
    rs.updateBlob(columnIndex, x);
  }

  public Clob getClob(int columnIndexthrows SQLException {
    return rs.getClob(columnIndex);
  }

  public void updateClob(int columnIndex, Clob xthrows SQLException {
    rs.updateClob(columnIndex, x);
  }

  public Date getDate(int columnIndexthrows SQLException {
    return rs.getDate(columnIndex);
  }

  public void updateDate(int columnIndex, Date xthrows SQLException {
    rs.updateDate(columnIndex, x);
  }

  public Ref getRef(int columnIndexthrows SQLException {
    return rs.getRef(columnIndex);
  }

  public void updateRef(int columnIndex, Ref xthrows SQLException {
    rs.updateRef(columnIndex, x);
  }

  public ResultSetMetaData getMetaData() throws SQLException {
    return rs.getMetaData();
  }

  public SQLWarning getWarnings() throws SQLException {
    return rs.getWarnings();
  }

  public Statement getStatement() throws SQLException {
    return rs.getStatement();
  }

  public Time getTime(int columnIndexthrows SQLException {
    return rs.getTime(columnIndex);
  }

  public void updateTime(int columnIndex, Time xthrows SQLException {
    rs.updateTime(columnIndex, x);
  }

  public Timestamp getTimestamp(int columnIndexthrows SQLException {
    return rs.getTimestamp(columnIndex);
  }

  public void updateTimestamp(int columnIndex, Timestamp xthrows SQLException {
    rs.updateTimestamp(columnIndex, x);
  }

  public Object getObject(int columnIndex, Map mapthrows SQLException {
    return rs.getObjectcolumnIndex, map );
  }

  public Date getDate(int columnIndex, Calendar calthrows SQLException {
    return rs.getDate(columnIndex, cal);
  }

  public Time getTime(int columnIndex, Calendar calthrows SQLException {
    return rs.getTime(columnIndex, cal);
  }

  public Timestamp getTimestamp(int columnIndex, Calendar calthrows SQLException {
    return rs.getTimestamp(columnIndex, cal);
  }
}