How do I iterate over a set of records in RPG(LE) with embedded SQL?
|
|
Usually I'll create a cursor and fetch each record.
|
||
|
|
|
|
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 |
||
|
|
