You need to close the cursor in your program before calling the stored
procedure again.
Stored Procedures return result set by defining a cursor and opening it (but
do not close it before the procedure ends ... otherwise nothing is
returned!).
That's the reason why you could not use a regular OPEN but have to use the
ASSOCIATE command (cursor is already open you only have to associate it with
the returned result set..
If the stored procedure would have coded correctly it would have tried to
first close the cursor (and handle the error if it was not opened).
... but it seems not to be.
So, it is up to you to close the cursor at the end of your
program/procedure.
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
Modernization ? Education ? Consulting on IBM i
IBM Champion since 2020
"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)
"Learning is experience ? everything else is only information!" (Albert
Einstein)
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Justin
Taylor
Sent: Friday, 1 September 2023 17:31
To: rpg400-l@xxxxxxxxxxxxxxxxxx
Subject: Resuse SQL Result Set?
I'm calling a SQL stored procedure from SQLRPGLE. It works fine for the
first call, but subsequent calls do not. The first EXEC SQL CALL properly
returns SQLSTATE 0100C, but subsequent calls return 00000.
What do I need to do to make multiple calls?
TIA
EXEC SQL CALL SCHEMA.PROC(:lFunction, :lInputParm);
aEqual(AD_HOC_RESULT_SETS :SQLSTATE);
EXEC SQL
associate result set locator (:ProcRS)
with procedure SCHEMA.PROC;
EXEC SQL close ProcCSR;
EXEC SQL allocate CSR cursor for result set :ProcRS;
aEqual(SUCCESS_SQL :SQLSTATE);
EXEC SQL FETCH NEXT FROM CSR INTO :lProcDs;
--
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.
As an Amazon Associate we earn from qualifying purchases.