Interface IDataSetRow
-
- All Known Subinterfaces:
IUpdatableDataSetRow
public interface IDataSetRow
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getColumnValue(int index)
Gets the column data by index.java.lang.Object
getColumnValue(java.lang.String name)
Gets the column data by column name.IDataSetInstance
getDataSet()
Gets the data set runtime instance which contains this row
-
-
-
Method Detail
-
getDataSet
IDataSetInstance getDataSet()
Gets the data set runtime instance which contains this row
-
getColumnValue
java.lang.Object getColumnValue(int index) throws ScriptException
Gets the column data by index. Data row column index starts from 1.- Parameters:
index
- 1-based index of column. If value is 0, an internal index of the current row (if available) is returned- Throws:
ScriptException
-
getColumnValue
java.lang.Object getColumnValue(java.lang.String name) throws ScriptException
Gets the column data by column name.- Parameters:
name
- of column- Throws:
ScriptException
-
-