ResultSet.java from BIRT at Krugle
Show ResultSet.java syntax highlighted
/*
*************************************************************************
* Copyright (c) 2004, 2005 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Actuate Corporation - initial API and implementation
*
*************************************************************************
*/
package org.eclipse.birt.data.oda.adapter.dtp;
import java.math.BigDecimal;
import java.sql.Date;
import java.sql.Time;
import java.sql.Timestamp;
import org.eclipse.datatools.connectivity.oda.IBlob;
import org.eclipse.datatools.connectivity.oda.IClob;
import org.eclipse.datatools.connectivity.oda.IResultSet;
import org.eclipse.datatools.connectivity.oda.IResultSetMetaData;
import org.eclipse.datatools.connectivity.oda.OdaException;
/**
* ResultSet is the DTP ODA adapter for the BIRT ODA driver interface IResultSet.
*/
public class ResultSet implements IResultSet
{
private org.eclipse.birt.data.oda.IResultSet m_birtResultSet = null;
private ResultSet()
{
}
/**
* Creates a ParameterRowSet adapter for the specified object.
* @param birtResultSet BIRT ODA IResultSet interface implementation.
*/
public ResultSet( org.eclipse.birt.data.oda.IResultSet birtResultSet )
{
m_birtResultSet = birtResultSet;
}
/*
* (non-Javadoc)
* @see org.eclipse.birt.data.oda.IResultSet#getMetaData()
*/
public IResultSetMetaData getMetaData() throws OdaException
{
try
{
return new ResultSetMetaData( m_birtResultSet.getMetaData() );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#close()
*/
public void close() throws OdaException
{
try
{
m_birtResultSet.close();
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#setMaxRows(int)
*/
public void setMaxRows( int max ) throws OdaException
{
try
{
m_birtResultSet.setMaxRows( max );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#next()
*/
public boolean next() throws OdaException
{
try
{
return m_birtResultSet.next();
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getRow()
*/
public int getRow() throws OdaException
{
try
{
return m_birtResultSet.getRow();
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getString(int)
*/
public String getString( int index ) throws OdaException
{
try
{
return m_birtResultSet.getString( index );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getString(java.lang.String)
*/
public String getString( String columnName ) throws OdaException
{
try
{
return m_birtResultSet.getString( columnName );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getInt(int)
*/
public int getInt( int index ) throws OdaException
{
try
{
return m_birtResultSet.getInt( index );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getInt(java.lang.String)
*/
public int getInt( String columnName ) throws OdaException
{
try
{
return m_birtResultSet.getInt( columnName );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getDouble(int)
*/
public double getDouble( int index ) throws OdaException
{
try
{
return m_birtResultSet.getDouble( index );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getDouble(java.lang.String)
*/
public double getDouble( String columnName ) throws OdaException
{
try
{
return m_birtResultSet.getDouble( columnName );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getBigDecimal(int)
*/
public BigDecimal getBigDecimal( int index ) throws OdaException
{
try
{
return m_birtResultSet.getBigDecimal( index );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getBigDecimal(java.lang.String)
*/
public BigDecimal getBigDecimal( String columnName ) throws OdaException
{
try
{
return m_birtResultSet.getBigDecimal( columnName );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getDate(int)
*/
public Date getDate( int index ) throws OdaException
{
try
{
return m_birtResultSet.getDate( index );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getDate(java.lang.String)
*/
public Date getDate( String columnName ) throws OdaException
{
try
{
return m_birtResultSet.getDate( columnName );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getTime(int)
*/
public Time getTime( int index ) throws OdaException
{
try
{
return m_birtResultSet.getTime( index );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getTime(java.lang.String)
*/
public Time getTime( String columnName ) throws OdaException
{
try
{
return m_birtResultSet.getTime( columnName );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getTimestamp(int)
*/
public Timestamp getTimestamp( int index ) throws OdaException
{
try
{
return m_birtResultSet.getTimestamp( index );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getTimestamp(java.lang.String)
*/
public Timestamp getTimestamp( String columnName ) throws OdaException
{
try
{
return m_birtResultSet.getTimestamp( columnName );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getBlob(int)
*/
public IBlob getBlob( int index ) throws OdaException
{
throw new UnsupportedOperationException();
}
/* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getBlob(java.lang.String)
*/
public IBlob getBlob( String columnName ) throws OdaException
{
throw new UnsupportedOperationException();
}
/* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getClob(int)
*/
public IClob getClob( int index ) throws OdaException
{
throw new UnsupportedOperationException();
}
/* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#getClob(java.lang.String)
*/
public IClob getClob( String columnName ) throws OdaException
{
throw new UnsupportedOperationException();
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#wasNull()
*/
public boolean wasNull() throws OdaException
{
try
{
return m_birtResultSet.wasNull();
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
/*
* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.IResultSet#findColumn(java.lang.String)
*/
public int findColumn( String columnName ) throws OdaException
{
try
{
return m_birtResultSet.findColumn( columnName );
}
catch( org.eclipse.birt.data.oda.OdaException e )
{
throw new OdaAdapterException( e );
}
}
}
See more files for this project here