|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.eclipse.datatools.connectivity.oda.consumer.helper.OdaObject
org.eclipse.datatools.connectivity.oda.consumer.helper.OdaDriverObject
org.eclipse.datatools.connectivity.oda.consumer.helper.OdaResultSet
org.eclipse.datatools.connectivity.oda.consumer.helper.OdaRowSet
OdaRowSet is the Oda wrapper for rowsets.
| Method Summary | |
boolean |
absolute(int rowIndex)
Moves the cursor to the designated row number. |
int |
add()
Appends a new row to the end of this collection and moves the cursor to the new row's position. |
void |
clear()
Removes all of the elements from this collection. |
boolean |
isEmpty()
Determines whether this does not contain any elements. |
boolean |
previous()
Moves the cursor up one element from its current position. |
void |
setBigDecimal(int columnIndex,
java.math.BigDecimal value)
Sets the decimal value at the designated column. |
void |
setBigDecimal(java.lang.String columnName,
java.math.BigDecimal value)
Sets the decimal value at the designated column. |
void |
setDate(int columnIndex,
java.sql.Date value)
Sets the date value at the designated column. |
void |
setDate(java.lang.String columnName,
java.sql.Date value)
Sets the date value at the designated column. |
void |
setDouble(int columnIndex,
double value)
Sets the double value at the designated column. |
void |
setDouble(java.lang.String columnName,
double value)
Sets the double value at the designated column. |
void |
setInt(int columnIndex,
int value)
Sets the integer value at the designated column. |
void |
setInt(java.lang.String columnName,
int value)
Sets the integer value at the designated column. |
void |
setString(int columnIndex,
java.lang.String value)
Sets the string value at the designated column. |
void |
setString(java.lang.String columnName,
java.lang.String value)
Sets the string value at the designated column. |
void |
setTime(int columnIndex,
java.sql.Time value)
Sets the time value at the designated column. |
void |
setTime(java.lang.String columnName,
java.sql.Time value)
Sets the time value at the designated column. |
void |
setTimestamp(int columnIndex,
java.sql.Timestamp value)
Sets the time stamp value at the designated column. |
void |
setTimestamp(java.lang.String columnName,
java.sql.Timestamp value)
Sets the time stamp value at the designated column. |
int |
size()
Returns the number of elements in this collection. |
| Methods inherited from class org.eclipse.datatools.connectivity.oda.consumer.helper.OdaResultSet |
close, findAndInvokeMethod, findColumn, getBigDecimal, getBigDecimal, getBigDecimalAsString, getBigDecimalAsString, getBlob, getBlob, getClob, getClob, getClobAsString, getClobAsString, getDate, getDate, getDateAsString, getDateAsString, getDouble, getDouble, getInt, getInt, getInterfaceName, getMetaData, getRow, getString, getString, getTime, getTime, getTimeAsString, getTimeAsString, getTimestamp, getTimestamp, getTimestampAsString, getTimestampAsString, next, setMaxRows, setThrowAndSetOdaException, wasNull |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.eclipse.datatools.connectivity.oda.IResultSet |
close, findColumn, getBigDecimal, getBigDecimal, getBlob, getBlob, getClob, getClob, getDate, getDate, getDouble, getDouble, getInt, getInt, getMetaData, getRow, getString, getString, getTime, getTime, getTimestamp, getTimestamp, next, setMaxRows, wasNull |
| Method Detail |
public boolean absolute(int rowIndex)
throws OdaException
IParameterRowSet
absolute in interface IParameterRowSetrowIndex - the row number (1-based).
OdaException - if data source error occurs.
public boolean previous()
throws OdaException
IParameterRowSet
previous in interface IParameterRowSetOdaException - if data source error occurs.
public int add()
throws OdaException
IParameterRowSet
add in interface IParameterRowSetOdaException - if data source error occurs.
public void clear()
throws OdaException
IParameterRowSet
clear in interface IParameterRowSetOdaException - if data source error occurs.
public boolean isEmpty()
throws OdaException
IParameterRowSet
isEmpty in interface IParameterRowSetOdaException - if data source error occurs.
public int size()
throws OdaException
IParameterRowSet
size in interface IParameterRowSetOdaException - if data source error occurs.
public void setInt(int columnIndex,
int value)
throws OdaException
IParameterRowSet
setInt in interface IParameterRowSetcolumnIndex - index of the column.value - the integer value.
OdaException - if data source error occurs.
public void setInt(java.lang.String columnName,
int value)
throws OdaException
IParameterRowSet
setInt in interface IParameterRowSetcolumnName - name of the column.value - the integer value.
OdaException - if data source error occurs.
public void setDouble(int columnIndex,
double value)
throws OdaException
IParameterRowSet
setDouble in interface IParameterRowSetcolumnIndex - index of the column.value - the double value.
OdaException - if data source error occurs.
public void setDouble(java.lang.String columnName,
double value)
throws OdaException
IParameterRowSet
setDouble in interface IParameterRowSetcolumnName - name of the column.value - the double value.
OdaException - if data source error occurs.
public void setBigDecimal(int columnIndex,
java.math.BigDecimal value)
throws OdaException
IParameterRowSet
setBigDecimal in interface IParameterRowSetcolumnIndex - index of the column.value - the decimal value.
OdaException - if data source error occurs.
public void setBigDecimal(java.lang.String columnName,
java.math.BigDecimal value)
throws OdaException
IParameterRowSet
setBigDecimal in interface IParameterRowSetcolumnName - name of the column.value - the decimal value.
OdaException - if data source error occurs.
public void setString(int columnIndex,
java.lang.String value)
throws OdaException
IParameterRowSet
setString in interface IParameterRowSetcolumnIndex - index of the column.value - the string value.
OdaException - if data source error occurs.
public void setString(java.lang.String columnName,
java.lang.String value)
throws OdaException
IParameterRowSet
setString in interface IParameterRowSetcolumnName - name of the column.value - the string value.
OdaException - if data source error occurs.
public void setDate(int columnIndex,
java.sql.Date value)
throws OdaException
IParameterRowSet
setDate in interface IParameterRowSetcolumnIndex - index of the column.value - the java.sql.Date value.
OdaException - if data source error occurs.
public void setDate(java.lang.String columnName,
java.sql.Date value)
throws OdaException
IParameterRowSet
setDate in interface IParameterRowSetcolumnName - name of the column.value - the java.sql.Date value.
OdaException - if data source error occurs.
public void setTime(int columnIndex,
java.sql.Time value)
throws OdaException
IParameterRowSet
setTime in interface IParameterRowSetcolumnIndex - index of the column.value - the java.sql.Time value.
OdaException - if data source error occurs.
public void setTime(java.lang.String columnName,
java.sql.Time value)
throws OdaException
IParameterRowSet
setTime in interface IParameterRowSetcolumnName - name of the column.value - the java.sql.Time value.
OdaException - if data source error occurs.
public void setTimestamp(int columnIndex,
java.sql.Timestamp value)
throws OdaException
IParameterRowSet
setTimestamp in interface IParameterRowSetcolumnIndex - index of the column.value - the java.sql.Timestamp value.
OdaException - if data source error occurs.
public void setTimestamp(java.lang.String columnName,
java.sql.Timestamp value)
throws OdaException
IParameterRowSet
setTimestamp in interface IParameterRowSetcolumnName - name of the column.value - the java.sql.Timestamp value.
OdaException - if data source error occurs.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||