OracleDataset : Before / After Refresh

Jens Fudickar

Member³
Is it possible to register the moment before and after a refresh.

Sometimes a refresh takes very long time and i want to handle this.

Don't know how?
 
I'm not exactly sure what you want to achieve, but perhaps you can use the AfterFetchRecord event. It fires each time a record is fetched from the database, so refreshing a dataset with 100 records will generate 100 AfterFetchRecord events. You may also be able to use the BeforeQuery and AfterQuery events, which fire before the query is executed and after the last record has been fetched.

------------------
Marco Kalter
Allround Automations
 
Back
Top