Method | Description |
open( IDataSetInstance dataSet ) | Called when the data set is opened. Use this method to initialize variables and to prepare for fetching rows. |
fetch( IDataSetInstance dataSet, IUpdatableDataSetRow dataSetRow ) | Called at row processing time. Use this method to fetch data with which to populate the row object. This method must return true if the fetch is successful and false if it is not. |
close( IDataSetInstance dataSet ) | Called upon completion of processing a data set. Use this method to perform clean‑up operations. |