How do I access the Sequence-Field property at runtime?

reneSan32

Member
I use Doa components dynamically at runtime and I want to set the sequenceField property. Its type ist TSequenceField but I found no documentation.

Can anybody tell me what I can do?

Thanks
 
At run-time you can access TOracleDataSet.SequenceField. It has the following properties:
Code:
property Field: string;
property Sequence: string;
property ApplyMoment: TSequenceApplyMoment;
The type for the 3rd property is as follows:
Code:
type TSequenceApplyMoment = (amOnNewRecord, amOnPost, amOnServer);
These properties work as documented.

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