How do I iterate over a set of records in RPG(LE) with embedded SQL?
|
feedback
|
|
Usually I'll create a cursor and fetch each record.
I have added more detail to this answer in a post on my website. | ||||
|
feedback
|
|
As Mike said, iterating over a cursor is the best solution. I would add to give slightly better performance, you might might want to fetch into an array to process in blocks rather than one record at a time. Example:
HTH, James R. Perkins | |||
feedback
|