|
I am running a subfile maintenance program using RPGLE and embedded SQL. When the user specifies they want to insert a record I'm using a: (don't read the code too closely, basically its just a SELECT with a WHERE) C/EXEC SQL C+ SELECT DISTINCT EMDFIL INTO :EMDFIL C+ FROM EMAILFDST C+ WHERE EMDFIL=:EMDFIL AND C+ EMDCMP=:EMDCMP AND C+ EMDFAC=:EMDFAC AND C+ EMDUSR=:EMDUSR C/END-EXEC and then checking the SQL code: C If SQLCOD<>0 to make sure the part doesn't already exist before doing the insert: C C/EXEC SQL C+ INSERT INTO EMAILFDST C+ VALUES(:EMAILFDST) C/END-EXEC Is there a cleaner way of doing this? I don't really care what the value of EMDFIL is, its the "WHERE" that I'm really interested in verifying. I've read the reference and programming manual from IBM and it doesn't seem like you can incorporate this checking into the INSERT command, unless I misunderstood.
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.