× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



On 11/17/2016 4:45 PM, dlclark@xxxxxxxxxxxxxxxx
wrote:
"MIDRANGE-L" <midrange-l-bounces@xxxxxxxxxxxx> wrote on 11/17/2016
04:21:58 PM:
I only ever use named indicators; never tried an array.

Then I guess you have never used the below parameter choice so
that the SQL precompiler automatically iterates the list of columns for
you and automatically matches them up with the appropriate element from
the SQL indicator array shown below?

exec sql execute IMLFCMDRSM_Insert_Stmt
using :IMLFCMP_View1 :IMLFCMP_Ind;

Late response, but yes I do that almost the same way you do. The
'trick' referenced below is to overlay the array over the individual
indicator fields in the DS.

* this is a trick. The named struct is to enable the overlay,
* the array is to enable ...fetch next into...
* the individual fields are so that the test for
* null makes sense in English
daftofc5Inds ds
d roleId#Ind 5i 0 overlay(aftofc5Inds)
...
d roleCodeCdInd 5i 0 overlay(aftofc5Inds: *next)
...
d aftofc5Ind 5i 0 dim(15) overlay(aftofc5Inds)



exec sql fetch next from aftofc5
into :aftofc5 :aftofc5Ind;
...
if rolecodecdInd <> ISNULL;
roleId = rolecodecd;
else;
roleId = 'None';
endif;



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.