Fields at Runtime

Cybrey

Member²
I would like get a list of fields at runtime without opening the dataset. Basically we're using a Stored Procedure wrapped inside TOracleDataset. It returns a ZCursor. In deisgn time if I right click on the fields dialog and click 'add all fields' it adds all the fields.

I need to be able to replicate this behaviour at runtime ?
 
If you set TOracleDataSet.QueryAllRecords to False, no records will be fetched when the dataset is opened. Records will only be fetched when the application requests them.

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