Can you show how you defined CODES?
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"
?Train people well enough so they can leave, treat them well enough so they
don't want to.? (Richard Branson)
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of mlazarus
Sent: Freitag, 13. August 2021 03:02
To: RPG400-L@xxxxxxxxxxxxxxxxxx
Subject: How to fetch into an array using dynamic SQL
Is is possible to fetch multiple fields into an array with dynamic SQL?
I'm using dynamic because the file name is passed to the program.
The actual number of "repeating" fields is much larger than the five I am
displaying.
StmtSQL = 'SELECT ' +
'max(RC01), max(RC02), max(RC03), max(RC04), max(RC05)' +
' FROM ' + InputFileName ;
Exec SQL PREPARE S1 FROM :StmtSQL ;
Exec SQL DECLARE C1 CURSOR FOR S1 ;
Exec SQL OPEN C1 ;
// Codes is defined as an array with the corresponding number of buckets as
// the fields I'd like to populate.
Exec SQL FETCH C1 INTO :Codes ;
The SQL pre-compiler complains:
SQL0312: Position 32 Variable CODES not defined or not usable. Reason:
No declaration for the variable exists, the declaration is not within the
current scope, or the variable does not have an equivalent SQL data type.
Is there a syntax that would work to populate the array?
-mark
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a
message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or
change list options,
visit:
https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
As an Amazon Associate we earn from qualifying purchases.