R reneSan32 Member Jun 3, 2003 #1 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
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
Marco Kalter Administrator Staff member Jun 3, 2003 #1 At run-time you can access TOracleDataSet.SequenceField. It has the following properties: Code: property Field: string; property Sequence: string; property ApplyMoment: TSequenceApplyMoment; Click to expand... The type for the 3rd property is as follows: Code: type TSequenceApplyMoment = (amOnNewRecord, amOnPost, amOnServer); Click to expand... These properties work as documented. ------------------ Marco Kalter Allround Automations
At run-time you can access TOracleDataSet.SequenceField. It has the following properties: Code: property Field: string; property Sequence: string; property ApplyMoment: TSequenceApplyMoment; Click to expand... The type for the 3rd property is as follows: Code: type TSequenceApplyMoment = (amOnNewRecord, amOnPost, amOnServer); Click to expand... These properties work as documented. ------------------ Marco Kalter Allround Automations
R reneSan32 Member Jun 4, 2003 #1 Thank you for your help. Is there also a way to access the last sequence value e.g. "getLastInsertId"?
Thank you for your help. Is there also a way to access the last sequence value e.g. "getLastInsertId"?
Marco Kalter Administrator Staff member Jun 4, 2003 #1 No, this is not possible. ------------------ Marco Kalter Allround Automations