Not sure why the Leave in that sample. I must have just wanted the first
record for this one.
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Kevin Bucknum
Sent: Friday, March 21, 2014 10:42 AM
To: RPG programming on the IBM i (AS/400 and iSeries)
Subject: RE: Embedded SQL in RPGLE
Closing the cursor you open over the prepared statement should release
it. Do you have some code (or pseudo code)?
From one of my quick and dirty reporting program over multiple
libraries
where I prepare a new query for each library.
exec sql prepare badqry from :@Sql;
exec sql Declare BadCsr scroll cursor for BadQry;
exec sql Open BadCsr;
exec sql Fetch Next from BadCsr into :@Mhexds;
If Sqlcod = 0;
Dow Sqlcod = 0;
Except #Bad;
exec sql Fetch Next from BadCsr into :@Mhexds;
Leave;
EndDo;
EndIf;
exec sql Close BadCsr;
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Marvin Radding
Sent: Friday, March 21, 2014 10:36 AM
To: rpg400-l@xxxxxxxxxxxx
Subject: Embedded SQL in RPGLE
I am testing a program that is using embedded SQL in RPGLE. I user the
PREPARE statement for a dynamic selection. Everything is fine the first
time through but on the second attempt I get the error "Prepared
statement STR1 in use."
Does anyone know how to release the prepared statement identifier. The
manual says that the identifier stays until explicitly released, but the
RELEASE statement is not what they are talking about and I can't find
any other reference to releasing the identifier.
Thanks in advance for your help.
Thanks,
Marvin
Notice: This e-mail transmission may contain information that is
proprietary, privileged and/or confidential and is intended exclusively
for the person(s) to whom it is addressed. This message may also contain
Protected Health Information (PHI) and must be treated confidentially
and handled in accordance with HIPAA and other federal and state privacy
laws. Any use, copying, retention or disclosure by any person other than
the intended recipient or the intended recipient's designees is strictly
prohibited. If you are not the intended recipient or their designee,
please notify the sender immediately and delete this e-mail (and any
accompanying attachments).
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L)
mailing list To post a message email: RPG400-L@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at
http://archive.midrange.com/rpg400-l.
Kevin Bucknum
Senior Programmer Analyst
MEDDATA/MEDTRON
Tel: 985-893-2550
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L)
mailing list To post a message email: RPG400-L@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at
http://archive.midrange.com/rpg400-l.
Kevin Bucknum
Senior Programmer Analyst
MEDDATA/MEDTRON
Tel: 985-893-2550
As an Amazon Associate we earn from qualifying purchases.