Interface IDataSetResult
public interface IDataSetResult
A read-only cursor over the rows of a data set opened from script via
.
invalid reference
IReportContext#openDataSet(String)
-
Method Summary
-
Method Details
-
next
Move to the next row.- Returns:
trueif a row is available- Throws:
ScriptExceptionorg.eclipse.birt.core.exception.BirtException
-
getValue
Object getValue(String columnName) throws ScriptException, org.eclipse.birt.core.exception.BirtException Get the value of a column in the current row.- Parameters:
columnName- the column name- Returns:
- the value, or
null - Throws:
ScriptExceptionorg.eclipse.birt.core.exception.BirtException
-
getString
String getString(String columnName) throws ScriptException, org.eclipse.birt.core.exception.BirtException Get the value of a column in the current row as a string.- Parameters:
columnName- the column name- Returns:
- the value as a string, or
null - Throws:
ScriptExceptionorg.eclipse.birt.core.exception.BirtException
-
close
Release the underlying result set.- Throws:
ScriptExceptionorg.eclipse.birt.core.exception.BirtException
-