Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jdaemon.test.sql
Class TestResultSet  view TestResultSet download TestResultSet.java

java.lang.Object
  extended byorg.jdaemon.test.sql.TestResultSet
All Implemented Interfaces:
java.sql.ResultSet

public class TestResultSet
extends java.lang.Object
implements java.sql.ResultSet

Result set object for test JDBC connection. Most operations are ultimately null operations; This class implements a result set of size zero.


Field Summary
private  TestStatement parent
           
 
Fields inherited from interface java.sql.ResultSet
CLOSE_CURSORS_AT_COMMIT, CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, HOLD_CURSORS_OVER_COMMIT, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE
 
Constructor Summary
TestResultSet(TestStatement parent)
          Creates a new instance of TestResultSet
 
Method Summary
 boolean absolute(int param)
          Null operation
 void afterLast()
          Null operation
 void beforeFirst()
          Null operation
 void cancelRowUpdates()
          Null operation
 void clearWarnings()
          Null operation
 void close()
          Null operation
 void deleteRow()
          Null operation
 int findColumn(java.lang.String str)
          Null Operation
 boolean first()
          Null operation
 java.sql.Array getArray(int param)
          Equivalent to (Array)getObject(param)
 java.sql.Array getArray(java.lang.String str)
          Equivalent to getArray(findColumn(str))
 java.io.InputStream getAsciiStream(int param)
          Equivalent to getBinaryStream(param)
 java.io.InputStream getAsciiStream(java.lang.String str)
          Equivalent to getAsciiStream(findColumn(str))
 java.math.BigDecimal getBigDecimal(int param)
          Equivalent to (BigDecimal)getObject(param)
 java.math.BigDecimal getBigDecimal(int param, int scale)
          Deprecated.  
 java.math.BigDecimal getBigDecimal(java.lang.String str)
          Equivalent to getBigDecimal(findColumn(str))
 java.math.BigDecimal getBigDecimal(java.lang.String str, int param)
          Deprecated.  
 java.io.InputStream getBinaryStream(int param)
          Equivalent to (InputStream)getObject(param)
 java.io.InputStream getBinaryStream(java.lang.String str)
          Equivalent to getBinaryStream(findColumn(str))
 java.sql.Blob getBlob(int param)
          Equivalent to (Blob)getObject(param)
 java.sql.Blob getBlob(java.lang.String str)
          Equivalent to getBlob(findColumn(str))
 boolean getBoolean(int param)
          Equivalent to ((Boolean)getObject(param)).booleanValue()
 boolean getBoolean(java.lang.String str)
          Equivalent to getBoolean(findColumn(str))
 byte getByte(int param)
          Equivalent to ((Byte)getObject(param)).booleanValue()
 byte getByte(java.lang.String str)
          Equivalent to getByte(findColumn(str))
 byte[] getBytes(int param)
          Equivalent to (byte[])getObject(param)
 byte[] getBytes(java.lang.String str)
          Equivalent to getBytes(findColumn(str))
 java.io.Reader getCharacterStream(int param)
          Equivalent to (Reader)getObject(param)
 java.io.Reader getCharacterStream(java.lang.String str)
          Equivalent to getCharacterStream(findColumn(str))
 java.sql.Clob getClob(int param)
          Equivalent to (Clob)getObject(param)
 java.sql.Clob getClob(java.lang.String str)
          Equivalent to getClob(findColumn(str))
 int getConcurrency()
          Null operation
 java.lang.String getCursorName()
          Null operation
 java.sql.Date getDate(int param)
          Equivalent to (Date)getObject(param)
 java.sql.Date getDate(int param, java.util.Calendar calendar)
          Equivalent to getDate(param)
 java.sql.Date getDate(java.lang.String str)
          Equivalent to getDate(findColumn(str))
 java.sql.Date getDate(java.lang.String str, java.util.Calendar calendar)
          Equivalent to getDate(str)
 double getDouble(int param)
          Equivalent to ((Number)getObject(param)).doubleValue()
 double getDouble(java.lang.String str)
          Equivalent to getDouble(findColumn(str))
 int getFetchDirection()
          Null operation
 int getFetchSize()
          Null operation
 float getFloat(int param)
          Equivalent to ((Number)getObject(param)).floatValue()
 float getFloat(java.lang.String str)
          Equivalent to getFloat(findColumn(str))
 int getInt(int param)
          Equivalent to ((Nummber)getObject(param)).intValue()
 int getInt(java.lang.String str)
          Equivalent to getInt(findColumn(str))
 long getLong(int param)
          Equivalent to ((Number)getObject(param)).longValue()
 long getLong(java.lang.String str)
          Equivalent to getLong(findColumn(str))
 java.sql.ResultSetMetaData getMetaData()
          Null operation
 java.lang.Object getObject(int param)
          Null operation return Always returns null
 java.lang.Object getObject(int param, java.util.Map map)
          Equivalent to getObject(param)
 java.lang.Object getObject(java.lang.String str)
          Equivalent to getObject(findColumn(str))
 java.lang.Object getObject(java.lang.String str, java.util.Map map)
          Equivalent to getObject(findColumn(str), map)
 java.sql.Ref getRef(int param)
          Equivalent to (Ref)getObject(param)
 java.sql.Ref getRef(java.lang.String str)
          Equivalent to getRef(findColumn(str))
 int getRow()
          Null operation
 short getShort(int param)
          Equivalent to ((Number)getObject(param)).shortValue()
 short getShort(java.lang.String str)
          Equivalent to getShort(findColumn(str))
 java.sql.Statement getStatement()
          This method returns a the Statement that was used to produce this result set.
 java.lang.String getString(int param)
          Equivalent to getObject(param).toString()
 java.lang.String getString(java.lang.String str)
          Equivalent to getString(findColumn(str))
 java.sql.Time getTime(int param)
          Equivalent to (Time)getObject(param)
 java.sql.Time getTime(int param, java.util.Calendar calendar)
          Equivalent to getTime(param)
 java.sql.Time getTime(java.lang.String str)
          Equivalent to getTime(findColumn(str))
 java.sql.Time getTime(java.lang.String str, java.util.Calendar calendar)
          Equivalent to getTime(str)
 java.sql.Timestamp getTimestamp(int param)
          Equivalent to (Timestamp)getObject(param)
 java.sql.Timestamp getTimestamp(int param, java.util.Calendar calendar)
          Equivalent to getTimestamp(param)
 java.sql.Timestamp getTimestamp(java.lang.String str)
          Equivalent to getTimestamp(findColumn(str))
 java.sql.Timestamp getTimestamp(java.lang.String str, java.util.Calendar calendar)
          Equivalent to getTimestamp(str)
 int getType()
          Null operation
 java.io.InputStream getUnicodeStream(int param)
          Equivalent to getBinaryStream(param)
 java.io.InputStream getUnicodeStream(java.lang.String str)
          Equivalent to getUnicodeStream(findColumn(str))
 java.net.URL getURL(int param)
          This method returns the specified column value as a java.net.URL.
 java.net.URL getURL(java.lang.String param)
          This method returns the specified column value as a java.net.URL.
 java.sql.SQLWarning getWarnings()
          Null operation
 void insertRow()
          Null operation
 boolean isAfterLast()
          Null operation
 boolean isBeforeFirst()
          Null operation
 boolean isFirst()
          Null operation
 boolean isLast()
          Null operation
 boolean last()
          Null operation
 void moveToCurrentRow()
          Null operation
 void moveToInsertRow()
          Null operation
 boolean next()
          Null operation
 boolean previous()
          Null operation
 void refreshRow()
          Null operation
 boolean relative(int param)
          Null operation
 boolean rowDeleted()
          Null operation
 boolean rowInserted()
          Null operation
 boolean rowUpdated()
          Null operation
 void setFetchDirection(int param)
          Null operation
 void setFetchSize(int param)
          Null operation
 void updateArray(int param, java.sql.Array ref)
          Equivalent to updateObject(param, str)
 void updateArray(java.lang.String param, java.sql.Array ref)
          Equivalent to updateObject(param, str)
 void updateAsciiStream(int param, java.io.InputStream inputStream, int param2)
          Equivalent to updateaBinaryStream(param, inputStream, param2)
 void updateAsciiStream(java.lang.String str, java.io.InputStream inputStream, int param)
          Equivalent to updateAsciiStream(findColumn(str), inputStream, param)
 void updateBigDecimal(int param, java.math.BigDecimal bigDecimal)
          Equivalent to updateObject(pram, bigDecimal)
 void updateBigDecimal(java.lang.String str, java.math.BigDecimal bigDecimal)
          Equivalent to updateBigDecimal(findColumn(str), bigDecimal)
 void updateBinaryStream(int param, java.io.InputStream inputStream, int param2)
          Equivalent to updateObject(param, inputStream)
 void updateBinaryStream(java.lang.String str, java.io.InputStream inputStream, int param)
          Equivalent to updateBinaryStream(findColumn(str), inputStream, param)
 void updateBlob(int param, java.sql.Blob ref)
          Equivalent to updateObject(param, str)
 void updateBlob(java.lang.String param, java.sql.Blob ref)
          Equivalent to updateObject(param, str)
 void updateBoolean(int param, boolean param1)
          Equivalent to updateObject(param, new Boolean(param1))
 void updateBoolean(java.lang.String str, boolean param)
          Equivalent to updateBoolean(findColumn(str), param)
 void updateByte(int param, byte param1)
          Equivalent to updateObject(param, new Byte(param1))
 void updateByte(java.lang.String str, byte param)
          Equivalent to updateByte(findColumn(str), param)
 void updateBytes(int param, byte[] values)
          Equivalent to updateObject(param, values)
 void updateBytes(java.lang.String str, byte[] values)
          Equivalent to updateBytes(findColumn(str), param)
 void updateCharacterStream(int param, java.io.Reader reader, int param2)
          Equivalent to updateObject(param, reader)
 void updateCharacterStream(java.lang.String str, java.io.Reader reader, int param)
          Equivalent to updateCharacterStream(findColumn(str), reader)
 void updateClob(int param, java.sql.Clob ref)
          Equivalent to updateObject(param, str)
 void updateClob(java.lang.String param, java.sql.Clob ref)
          Equivalent to updateObject(param, str)
 void updateDate(int param, java.sql.Date date)
          Equivalent to updateObject(param, date)
 void updateDate(java.lang.String str, java.sql.Date date)
          Equivalent to updateDate(findColumn(str), date)
 void updateDouble(int param, double param1)
          Equivalent to updateObject(param, new Double(param1))
 void updateDouble(java.lang.String str, double param)
          Equivalent to updateDouble(findColumn(str), param)
 void updateFloat(int param, float param1)
          Equivalent to updateObject(param, new Float(param1))
 void updateFloat(java.lang.String str, float param)
          Equivalent to updateFloat(findColumn(str), param)
 void updateInt(int param, int param1)
          Equivalent to updateObject(param, new Integer(param1))
 void updateInt(java.lang.String str, int param)
          Equivalent to updateInt(findColumn(str), param)
 void updateLong(int param, long param1)
          Equivalent to updateObject(pram, new Long(param1))
 void updateLong(java.lang.String str, long param)
          Equivalent to updateLong(findColumn(str), param)
 void updateNull(int param)
          Equivalent to updateObject(param, null)
 void updateNull(java.lang.String str)
          Equivalent to updateNull(findColumn(str))
 void updateObject(int param, java.lang.Object obj)
          Null operation
 void updateObject(int param, java.lang.Object obj, int param2)
          Equivalent to updateObject(param, obj)
 void updateObject(java.lang.String str, java.lang.Object obj)
          Equivalent to updateObject(findColumn(str), obj)
 void updateObject(java.lang.String str, java.lang.Object obj, int param)
          Equivalent to updateObject(findColumn(str), obj, param)
 void updateRef(int param, java.sql.Ref ref)
          Equivalent to updateObject(param, str)
 void updateRef(java.lang.String param, java.sql.Ref ref)
          Equivalent to updateObject(param, str)
 void updateRow()
          Null operation
 void updateShort(int param, short param1)
          Equivalent to updateObject(param, new Short(param1))
 void updateShort(java.lang.String str, short param)
          Equivalent to updateShort(findColumn(str), param)
 void updateString(int param, java.lang.String str)
          Equivalent to updateObject(param, str)
 void updateString(java.lang.String str, java.lang.String str1)
          Equivalent to updateString(findColumn(str), param)
 void updateTime(int param, java.sql.Time time)
          Equivalent to updateObject(param, time)
 void updateTime(java.lang.String str, java.sql.Time time)
          Equivalent to updateTime(findColumn(str), param)
 void updateTimestamp(int param, java.sql.Timestamp timestamp)
          Equivalent to updateObject(param, timestamp)
 void updateTimestamp(java.lang.String str, java.sql.Timestamp timestamp)
          Equivalent to updateTimestamp(findColumn(str), param)
 boolean wasNull()
          Null operation
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

parent

private TestStatement parent
Constructor Detail

TestResultSet

public TestResultSet(TestStatement parent)
Creates a new instance of TestResultSet

Method Detail

absolute

public boolean absolute(int param)
                 throws java.sql.SQLException
Null operation

Specified by:
absolute in interface java.sql.ResultSet

afterLast

public void afterLast()
               throws java.sql.SQLException
Null operation

Specified by:
afterLast in interface java.sql.ResultSet

beforeFirst

public void beforeFirst()
                 throws java.sql.SQLException
Null operation

Specified by:
beforeFirst in interface java.sql.ResultSet

cancelRowUpdates

public void cancelRowUpdates()
                      throws java.sql.SQLException
Null operation

Specified by:
cancelRowUpdates in interface java.sql.ResultSet

clearWarnings

public void clearWarnings()
                   throws java.sql.SQLException
Null operation

Specified by:
clearWarnings in interface java.sql.ResultSet

close

public void close()
           throws java.sql.SQLException
Null operation

Specified by:
close in interface java.sql.ResultSet

deleteRow

public void deleteRow()
               throws java.sql.SQLException
Null operation

Specified by:
deleteRow in interface java.sql.ResultSet

findColumn

public int findColumn(java.lang.String str)
               throws java.sql.SQLException
Null Operation

Specified by:
findColumn in interface java.sql.ResultSet

first

public boolean first()
              throws java.sql.SQLException
Null operation

Specified by:
first in interface java.sql.ResultSet

getArray

public java.sql.Array getArray(int param)
                        throws java.sql.SQLException
Equivalent to (Array)getObject(param)

Specified by:
getArray in interface java.sql.ResultSet

getArray

public java.sql.Array getArray(java.lang.String str)
                        throws java.sql.SQLException
Equivalent to getArray(findColumn(str))

Specified by:
getArray in interface java.sql.ResultSet

getAsciiStream

public java.io.InputStream getAsciiStream(int param)
                                   throws java.sql.SQLException
Equivalent to getBinaryStream(param)

Specified by:
getAsciiStream in interface java.sql.ResultSet

getAsciiStream

public java.io.InputStream getAsciiStream(java.lang.String str)
                                   throws java.sql.SQLException
Equivalent to getAsciiStream(findColumn(str))

Specified by:
getAsciiStream in interface java.sql.ResultSet

getBigDecimal

public java.math.BigDecimal getBigDecimal(int param)
                                   throws java.sql.SQLException
Equivalent to (BigDecimal)getObject(param)

Specified by:
getBigDecimal in interface java.sql.ResultSet

getBigDecimal

public java.math.BigDecimal getBigDecimal(java.lang.String str)
                                   throws java.sql.SQLException
Equivalent to getBigDecimal(findColumn(str))

Specified by:
getBigDecimal in interface java.sql.ResultSet

getBigDecimal

public java.math.BigDecimal getBigDecimal(int param,
                                          int scale)
                                   throws java.sql.SQLException
Deprecated.  

Equivalent to getBigDecimal(param)

Specified by:
getBigDecimal in interface java.sql.ResultSet

getBigDecimal

public java.math.BigDecimal getBigDecimal(java.lang.String str,
                                          int param)
                                   throws java.sql.SQLException
Deprecated.  

Equivalent to getBigDecimal(str)

Specified by:
getBigDecimal in interface java.sql.ResultSet

getURL

public java.net.URL getURL(int param)
                    throws java.sql.SQLException
Description copied from interface: java.sql.ResultSet
This method returns the specified column value as a java.net.URL.

Specified by:
getURL in interface java.sql.ResultSet

getURL

public java.net.URL getURL(java.lang.String param)
                    throws java.sql.SQLException
Description copied from interface: java.sql.ResultSet
This method returns the specified column value as a java.net.URL.

Specified by:
getURL in interface java.sql.ResultSet

getBinaryStream

public java.io.InputStream getBinaryStream(int param)
                                    throws java.sql.SQLException
Equivalent to (InputStream)getObject(param)

Specified by:
getBinaryStream in interface java.sql.ResultSet

getBinaryStream

public java.io.InputStream getBinaryStream(java.lang.String str)
                                    throws java.sql.SQLException
Equivalent to getBinaryStream(findColumn(str))

Specified by:
getBinaryStream in interface java.sql.ResultSet

getBlob

public java.sql.Blob getBlob(int param)
                      throws java.sql.SQLException
Equivalent to (Blob)getObject(param)

Specified by:
getBlob in interface java.sql.ResultSet

getBlob

public java.sql.Blob getBlob(java.lang.String str)
                      throws java.sql.SQLException
Equivalent to getBlob(findColumn(str))

Specified by:
getBlob in interface java.sql.ResultSet

getBoolean

public boolean getBoolean(int param)
                   throws java.sql.SQLException
Equivalent to ((Boolean)getObject(param)).booleanValue()

Specified by:
getBoolean in interface java.sql.ResultSet

getBoolean

public boolean getBoolean(java.lang.String str)
                   throws java.sql.SQLException
Equivalent to getBoolean(findColumn(str))

Specified by:
getBoolean in interface java.sql.ResultSet

getByte

public byte getByte(int param)
             throws java.sql.SQLException
Equivalent to ((Byte)getObject(param)).booleanValue()

Specified by:
getByte in interface java.sql.ResultSet

getByte

public byte getByte(java.lang.String str)
             throws java.sql.SQLException
Equivalent to getByte(findColumn(str))

Specified by:
getByte in interface java.sql.ResultSet

getBytes

public byte[] getBytes(int param)
                throws java.sql.SQLException
Equivalent to (byte[])getObject(param)

Specified by:
getBytes in interface java.sql.ResultSet

getBytes

public byte[] getBytes(java.lang.String str)
                throws java.sql.SQLException
Equivalent to getBytes(findColumn(str))

Specified by:
getBytes in interface java.sql.ResultSet

getCharacterStream

public java.io.Reader getCharacterStream(int param)
                                  throws java.sql.SQLException
Equivalent to (Reader)getObject(param)

Specified by:
getCharacterStream in interface java.sql.ResultSet

getCharacterStream

public java.io.Reader getCharacterStream(java.lang.String str)
                                  throws java.sql.SQLException
Equivalent to getCharacterStream(findColumn(str))

Specified by:
getCharacterStream in interface java.sql.ResultSet

getClob

public java.sql.Clob getClob(int param)
                      throws java.sql.SQLException
Equivalent to (Clob)getObject(param)

Specified by:
getClob in interface java.sql.ResultSet

getClob

public java.sql.Clob getClob(java.lang.String str)
                      throws java.sql.SQLException
Equivalent to getClob(findColumn(str))

Specified by:
getClob in interface java.sql.ResultSet

getConcurrency

public int getConcurrency()
                   throws java.sql.SQLException
Null operation

Specified by:
getConcurrency in interface java.sql.ResultSet

getCursorName

public java.lang.String getCursorName()
                               throws java.sql.SQLException
Null operation

Specified by:
getCursorName in interface java.sql.ResultSet

getDate

public java.sql.Date getDate(int param)
                      throws java.sql.SQLException
Equivalent to (Date)getObject(param)

Specified by:
getDate in interface java.sql.ResultSet

getDate

public java.sql.Date getDate(java.lang.String str)
                      throws java.sql.SQLException
Equivalent to getDate(findColumn(str))

Specified by:
getDate in interface java.sql.ResultSet

getDate

public java.sql.Date getDate(int param,
                             java.util.Calendar calendar)
                      throws java.sql.SQLException
Equivalent to getDate(param)

Specified by:
getDate in interface java.sql.ResultSet

getDate

public java.sql.Date getDate(java.lang.String str,
                             java.util.Calendar calendar)
                      throws java.sql.SQLException
Equivalent to getDate(str)

Specified by:
getDate in interface java.sql.ResultSet

getDouble

public double getDouble(int param)
                 throws java.sql.SQLException
Equivalent to ((Number)getObject(param)).doubleValue()

Specified by:
getDouble in interface java.sql.ResultSet

getDouble

public double getDouble(java.lang.String str)
                 throws java.sql.SQLException
Equivalent to getDouble(findColumn(str))

Specified by:
getDouble in interface java.sql.ResultSet

getFetchDirection

public int getFetchDirection()
                      throws java.sql.SQLException
Null operation

Specified by:
getFetchDirection in interface java.sql.ResultSet

getFetchSize

public int getFetchSize()
                 throws java.sql.SQLException
Null operation

Specified by:
getFetchSize in interface java.sql.ResultSet

getFloat

public float getFloat(int param)
               throws java.sql.SQLException
Equivalent to ((Number)getObject(param)).floatValue()

Specified by:
getFloat in interface java.sql.ResultSet

getFloat

public float getFloat(java.lang.String str)
               throws java.sql.SQLException
Equivalent to getFloat(findColumn(str))

Specified by:
getFloat in interface java.sql.ResultSet

getInt

public int getInt(int param)
           throws java.sql.SQLException
Equivalent to ((Nummber)getObject(param)).intValue()

Specified by:
getInt in interface java.sql.ResultSet

getInt

public int getInt(java.lang.String str)
           throws java.sql.SQLException
Equivalent to getInt(findColumn(str))

Specified by:
getInt in interface java.sql.ResultSet

getLong

public long getLong(int param)
             throws java.sql.SQLException
Equivalent to ((Number)getObject(param)).longValue()

Specified by:
getLong in interface java.sql.ResultSet

getLong

public long getLong(java.lang.String str)
             throws java.sql.SQLException
Equivalent to getLong(findColumn(str))

Specified by:
getLong in interface java.sql.ResultSet

getMetaData

public java.sql.ResultSetMetaData getMetaData()
                                       throws java.sql.SQLException
Null operation

Specified by:
getMetaData in interface java.sql.ResultSet

getObject

public java.lang.Object getObject(int param)
                           throws java.sql.SQLException
Null operation return Always returns null

Specified by:
getObject in interface java.sql.ResultSet

getObject

public java.lang.Object getObject(java.lang.String str)
                           throws java.sql.SQLException
Equivalent to getObject(findColumn(str))

Specified by:
getObject in interface java.sql.ResultSet

getObject

public java.lang.Object getObject(int param,
                                  java.util.Map map)
                           throws java.sql.SQLException
Equivalent to getObject(param)

Specified by:
getObject in interface java.sql.ResultSet

getObject

public java.lang.Object getObject(java.lang.String str,
                                  java.util.Map map)
                           throws java.sql.SQLException
Equivalent to getObject(findColumn(str), map)

Specified by:
getObject in interface java.sql.ResultSet

getRef

public java.sql.Ref getRef(int param)
                    throws java.sql.SQLException
Equivalent to (Ref)getObject(param)

Specified by:
getRef in interface java.sql.ResultSet

getRef

public java.sql.Ref getRef(java.lang.String str)
                    throws java.sql.SQLException
Equivalent to getRef(findColumn(str))

Specified by:
getRef in interface java.sql.ResultSet

getRow

public int getRow()
           throws java.sql.SQLException
Null operation

Specified by:
getRow in interface java.sql.ResultSet

getShort

public short getShort(int param)
               throws java.sql.SQLException
Equivalent to ((Number)getObject(param)).shortValue()

Specified by:
getShort in interface java.sql.ResultSet

getShort

public short getShort(java.lang.String str)
               throws java.sql.SQLException
Equivalent to getShort(findColumn(str))

Specified by:
getShort in interface java.sql.ResultSet

getStatement

public java.sql.Statement getStatement()
                                throws java.sql.SQLException
Description copied from interface: java.sql.ResultSet
This method returns a the Statement that was used to produce this result set.

Specified by:
getStatement in interface java.sql.ResultSet

getString

public java.lang.String getString(int param)
                           throws java.sql.SQLException
Equivalent to getObject(param).toString()

Specified by:
getString in interface java.sql.ResultSet

getString

public java.lang.String getString(java.lang.String str)
                           throws java.sql.SQLException
Equivalent to getString(findColumn(str))

Specified by:
getString in interface java.sql.ResultSet

getTime

public java.sql.Time getTime(int param)
                      throws java.sql.SQLException
Equivalent to (Time)getObject(param)

Specified by:
getTime in interface java.sql.ResultSet

getTime

public java.sql.Time getTime(java.lang.String str)
                      throws java.sql.SQLException
Equivalent to getTime(findColumn(str))

Specified by:
getTime in interface java.sql.ResultSet

getTime

public java.sql.Time getTime(int param,
                             java.util.Calendar calendar)
                      throws java.sql.SQLException
Equivalent to getTime(param)

Specified by:
getTime in interface java.sql.ResultSet

getTime

public java.sql.Time getTime(java.lang.String str,
                             java.util.Calendar calendar)
                      throws java.sql.SQLException
Equivalent to getTime(str)

Specified by:
getTime in interface java.sql.ResultSet

getTimestamp

public java.sql.Timestamp getTimestamp(int param)
                                throws java.sql.SQLException
Equivalent to (Timestamp)getObject(param)

Specified by:
getTimestamp in interface java.sql.ResultSet

getTimestamp

public java.sql.Timestamp getTimestamp(java.lang.String str)
                                throws java.sql.SQLException
Equivalent to getTimestamp(findColumn(str))

Specified by:
getTimestamp in interface java.sql.ResultSet

getTimestamp

public java.sql.Timestamp getTimestamp(int param,
                                       java.util.Calendar calendar)
                                throws java.sql.SQLException
Equivalent to getTimestamp(param)

Specified by:
getTimestamp in interface java.sql.ResultSet

getTimestamp

public java.sql.Timestamp getTimestamp(java.lang.String str,
                                       java.util.Calendar calendar)
                                throws java.sql.SQLException
Equivalent to getTimestamp(str)

Specified by:
getTimestamp in interface java.sql.ResultSet

getType

public int getType()
            throws java.sql.SQLException
Null operation

Specified by:
getType in interface java.sql.ResultSet

getUnicodeStream

public java.io.InputStream getUnicodeStream(int param)
                                     throws java.sql.SQLException
Equivalent to getBinaryStream(param)

Specified by:
getUnicodeStream in interface java.sql.ResultSet

getUnicodeStream

public java.io.InputStream getUnicodeStream(java.lang.String str)
                                     throws java.sql.SQLException
Equivalent to getUnicodeStream(findColumn(str))

Specified by:
getUnicodeStream in interface java.sql.ResultSet

getWarnings

public java.sql.SQLWarning getWarnings()
                                throws java.sql.SQLException
Null operation

Specified by:
getWarnings in interface java.sql.ResultSet

insertRow

public void insertRow()
               throws java.sql.SQLException
Null operation

Specified by:
insertRow in interface java.sql.ResultSet

isAfterLast

public boolean isAfterLast()
                    throws java.sql.SQLException
Null operation

Specified by:
isAfterLast in interface java.sql.ResultSet

isBeforeFirst

public boolean isBeforeFirst()
                      throws java.sql.SQLException
Null operation

Specified by:
isBeforeFirst in interface java.sql.ResultSet

isFirst

public boolean isFirst()
                throws java.sql.SQLException
Null operation

Specified by:
isFirst in interface java.sql.ResultSet

isLast

public boolean isLast()
               throws java.sql.SQLException
Null operation

Specified by:
isLast in interface java.sql.ResultSet

last

public boolean last()
             throws java.sql.SQLException
Null operation

Specified by:
last in interface java.sql.ResultSet

moveToCurrentRow

public void moveToCurrentRow()
                      throws java.sql.SQLException
Null operation

Specified by:
moveToCurrentRow in interface java.sql.ResultSet

moveToInsertRow

public void moveToInsertRow()
                     throws java.sql.SQLException
Null operation

Specified by:
moveToInsertRow in interface java.sql.ResultSet

next

public boolean next()
             throws java.sql.SQLException
Null operation

Specified by:
next in interface java.sql.ResultSet

previous

public boolean previous()
                 throws java.sql.SQLException
Null operation

Specified by:
previous in interface java.sql.ResultSet

refreshRow

public void refreshRow()
                throws java.sql.SQLException
Null operation

Specified by:
refreshRow in interface java.sql.ResultSet

relative

public boolean relative(int param)
                 throws java.sql.SQLException
Null operation

Specified by:
relative in interface java.sql.ResultSet

rowDeleted

public boolean rowDeleted()
                   throws java.sql.SQLException
Null operation

Specified by:
rowDeleted in interface java.sql.ResultSet

rowInserted

public boolean rowInserted()
                    throws java.sql.SQLException
Null operation

Specified by:
rowInserted in interface java.sql.ResultSet

rowUpdated

public boolean rowUpdated()
                   throws java.sql.SQLException
Null operation

Specified by:
rowUpdated in interface java.sql.ResultSet

setFetchDirection

public void setFetchDirection(int param)
                       throws java.sql.SQLException
Null operation

Specified by:
setFetchDirection in interface java.sql.ResultSet

setFetchSize

public void setFetchSize(int param)
                  throws java.sql.SQLException
Null operation

Specified by:
setFetchSize in interface java.sql.ResultSet

updateAsciiStream

public void updateAsciiStream(int param,
                              java.io.InputStream inputStream,
                              int param2)
                       throws java.sql.SQLException
Equivalent to updateaBinaryStream(param, inputStream, param2)

Specified by:
updateAsciiStream in interface java.sql.ResultSet

updateAsciiStream

public void updateAsciiStream(java.lang.String str,
                              java.io.InputStream inputStream,
                              int param)
                       throws java.sql.SQLException
Equivalent to updateAsciiStream(findColumn(str), inputStream, param)

Specified by:
updateAsciiStream in interface java.sql.ResultSet

updateBigDecimal

public void updateBigDecimal(int param,
                             java.math.BigDecimal bigDecimal)
                      throws java.sql.SQLException
Equivalent to updateObject(pram, bigDecimal)

Specified by:
updateBigDecimal in interface java.sql.ResultSet

updateBigDecimal

public void updateBigDecimal(java.lang.String str,
                             java.math.BigDecimal bigDecimal)
                      throws java.sql.SQLException
Equivalent to updateBigDecimal(findColumn(str), bigDecimal)

Specified by:
updateBigDecimal in interface java.sql.ResultSet

updateBinaryStream

public void updateBinaryStream(int param,
                               java.io.InputStream inputStream,
                               int param2)
                        throws java.sql.SQLException
Equivalent to updateObject(param, inputStream)

Specified by:
updateBinaryStream in interface java.sql.ResultSet

updateBinaryStream

public void updateBinaryStream</