| com.salmonllc.sql.DataSourceIn
All known Subclasses: com.salmonllc.sql.DSDataSourceJDBC,
DataSourceIn | public interface DataSourceIn (Code) | | This interface should be implemented for DataStores that use non standard data sources to retrieve their data.
|
postRetrieve | public void postRetrieve(DataStore ds) throws Exception(Code) | | This method will be called after the data retrieve ends.
|
preRetrieve | public boolean preRetrieve(DataStore ds, String selectionCriteria, boolean countOnly, DBConnection conn) throws Exception(Code) | | This method will be called before the data retrieve starts. It should do any preProcessing required to initiate the retrieve.
boolean true if the DataStore should be retrieved and false if not |
retrieveRow | public boolean retrieveRow(DataStore ds, DataStoreRow row) throws Exception(Code) | | This method will be called for each row the DataStore is to retrieve. The method should retrieve the data from the data source and populate the DataStoreRow passed. Return false when the retrieve is finished and true to continue retrieving.
|
|
|