Methods Summary |
---|
public void | setDataSource(java.lang.Object dataSource)
this.rawDataSource = dataSource;
this.dataSourceSpecified = true;
|
public void | setMaxRows(int maxRows)Query result can be limited by specifying
the maximum number of rows returned.
this.maxRows = maxRows;
this.maxRowsSpecified = true;
|
public void | setSql(java.lang.String sql)Setter method for the SQL statement to use for the
query. The statement may contain parameter markers
(question marks, ?). If so, the parameter values must
be set using nested value elements.
this.sql = sql;
|
public void | setStartRow(int startRow)The index of the first row returned can be
specified using startRow.
this.startRow = startRow;
|