|
I like this one. Rob Berendt -- Group Dekko Services, LLC Dept 01.073 PO Box 2000 Dock 108 6928N 400E Kendallville, IN 46755 http://www.dekko.com "Hauser, Birgitta" <Birgitta.Hauser@xxxxxxxxxxx> Sent by: rpg400-l-bounces@xxxxxxxxxxxx 01/31/2005 08:01 AM Please respond to RPG programming on the AS400 / iSeries <rpg400-l@xxxxxxxxxxxx> To "'rpg400-l@xxxxxxxxxxxx'" <rpg400-l@xxxxxxxxxxxx> cc Subject Re: Suggested Technic Hi, why not simply add a before insert trigger, that calculates and inserts the new current number. Something like this: Create Trigger MyLib/InsCurrNbr BEFORE INSERT on MyFile Referencing NEW as INS For Each Row Mode DB2ROW Select Coalesce(Max(a.CurrNbr) + 1 , 1) into INS.CurrNbr from MyFile a where a.Key = INS.Key; With a Before Insert Trigger the current number is always calculated and inserted in the record, when a new record is added to the file. Independend from the used interface (Native I/O, UPDDTA, Interactive SQL ...) Mit freundlichen Grüßen i.A. Birgitta Hauser LUNZER + PARTNER GMBH Unternehmensberatung Carl-Zeiss-Straße 1 63755 Alzenau Tel: + 49 6023 951-255 Fax: + 49 6023 951-111 Internet. www.lp-gmbh.com <http://www.lp-gmbh.com> www.rpg-schulung.de <http://www.rpg-schulung.de> -- This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/rpg400-l or email: RPG400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/rpg400-l.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.