Package | Description |
---|---|
com.streamscape.sdo.event | |
com.streamscape.sdo.rowset |
Modifier and Type | Method and Description |
---|---|
void |
RowArrayEvent.addRow(DataRow row)
Adds a new row to the array.
|
void |
RowEvent.init(ResultSet resultSet)
Initializes the SDO row stored in the event by the specified result set.
|
DataRow |
RowArrayEvent.newRow()
Returns a new row.
|
Modifier and Type | Method and Description |
---|---|
void |
RowArray.addRow(DataRow row) |
int |
Row.findColumn(java.lang.String columnName)
Returns index of the column with specified name.
|
int |
DataRow.findColumn(java.lang.String columnName)
Finds the column specified by name, returning it's index or -1 if
it does not exist in the tuple set.
|
java.lang.Object |
Row.getColumn(int index)
Returns value of the column specified by index.
|
java.lang.Object |
DataRow.getColumn(int index)
Gets the column at the secified index.
|
java.lang.Object |
Row.getColumn(java.lang.String name)
Returns value of the column with specified name.
|
java.lang.Object |
DataRow.getColumn(java.lang.String column)
Gets the value of the column with specified name.
|
java.lang.Class |
Row.getColumnClass(int index)
Returns Java type for the column with specified index.
|
java.lang.Class |
DataRow.getColumnClass(int index)
Returns the class instance of a secific column at the index.
|
java.lang.Class |
Row.getColumnClass(java.lang.String columnName)
Returns Java type for the specified column.
|
int |
Row.getColumnCount()
Returns column count.
|
int |
DataRow.getColumnCount()
Returns the number of columns in this row.
|
int |
Row.getColumnSQLType(int index)
Returns SQL type code for the column with specified index.
|
int |
DataRow.getColumnSQLType(int index)
Returns the
SQLTypeToken of the specified column. |
int |
Row.getColumnSQLType(java.lang.String columnName)
Returns SQL type code for the specified column.
|
boolean |
Row.hasRowId()
Checks if the row contains RowId.
|
boolean |
DataRow.hasRowId()
Returns
true if this row contains a Row Id column. |
boolean |
Row.isColumnNull(int index)
Checks if column with specified index is NULL.
|
boolean |
DataRow.isColumnNull(int index)
Returns
true if the column at the secified index is
Null . |
boolean |
Row.isColumnNull(java.lang.String columnName)
Checks if specified column is NULL.
|
boolean |
DataRow.isColumnNull(java.lang.String columnName)
Returns
true if the column by this name is Null . |
DataRow |
RowArray.newRow() |
void |
Row.setColumn(int index,
java.lang.Object value)
Sets the value for the column specified by index.
|
void |
DataRow.setColumn(int index,
java.lang.Object value)
Sets the column at specified index to the specific value.
|
void |
Row.setColumn(java.lang.String columnName,
java.lang.Object value)
Sets the value for the column specified by name.
|
void |
DataRow.setColumn(java.lang.String columnName,
java.lang.Object value)
Sets the value of the column of the specific name.
|
void |
Row.setColumnNull(int index)
Sets column with specified index to NULL.
|
void |
DataRow.setColumnNull(int index)
Sets a column at the specified index to
Null . |
void |
RowSet.setOutParameterValue(int index,
java.lang.Object value)
Sets out parameter value by index.
|
void |
RowSetInterface.setOutParameterValue(int index,
java.lang.Object value)
Sets out parameter value by index.
|
void |
RowSet.setOutParameterValue(java.lang.String name,
java.lang.Object value)
Sets out parameter value by name.
|
void |
RowSetInterface.setOutParameterValue(java.lang.String name,
java.lang.Object value)
Sets out parameter value by name.
|
void |
Row.setRawColumn(int index,
java.lang.Object value)
Sets raw data for this column.
|
void |
Row.setRawData(java.lang.Object[] data)
Sets raw data for this row.
|
void |
DataRow.setRawData(java.lang.Object[] data)
Sets raw data for this row.
|
Constructor and Description |
---|
Row(ResultSet result)
Creates new row from the ResultSet.
|
Row(RowMetaData meta,
java.lang.Object[] values)
Creates new row with the specified meta data and values.
|
Copyright © 2015-2024 StreamScape Technologies. All rights reserved.