Question Increment

RealHeavyDude

Well-Known Member
Progress does not support an auto-increment type of field. You can use a sequence. The sequence will take care about itself, but you must code the assign statement somehwere in the code and execute that code. For convenience you could use the create table trigger that fires whenever a record gets created in the table. But that is about everything I would use database triggers for.

Heavy Regards, RealHeavyDude.
 
Top