Thanks for the article Jon.
I am confus-ed, missing something or whatever. I am reading a single
record to load contiguous fields into an array(s).
Is the solution you propose below for a single record or for multiple
records...? like i said... i am confus-ed. :)
<snip>
The article you referenced (Found this Paris article, i'm trying to adapt
and use now ->
http://ibmsystemsmag.com/ibmi/developer/general/d-spec-discoveries/?page=2
<
http://ibmsystemsmag.com/ibmi/developer/general/d-spec-discoveries/?page=2
)
Is the "as designed" way to go - particularly if you wanted to avoid
pointers - which may cause issues for those who follow you since pointers
are not exactly common currency in the RPG world.
This is one of those interesting (and rare) cases when Multiple Occurrence
DS can work.
Just set the Occur level before you do the read.
By the way - as you have hopefully realized from the article - the POS
keywords are not needed. The fields will be contiguous in the DS anyway -
POS just confuses the issue I think.
Personally I would use a DS array defined with LIkeRec and use DS I/O.
Like So.
dcl-ds data LikeRec(recname);
index += 1;
Chain key filename data(index);
That is by far the simplest approach.
Jon Paris
</snip>
<br />
The information in this email is confidential and may be legally privileged.
It is intended solely for the addressee. Access to this email by anyone else is
unauthorized. If you are not the intended recipient, any disclosure, copying,
distribution or any action taken or omitted to be taken in reliance on it, is
prohibited and may be unlawful.
As an Amazon Associate we earn from qualifying purchases.