Same result when specifying INOUT on both parameters
-----Original Message-----
From: (WalzCraft) Jerry Forss <JForss@xxxxxxxxxxxxx>
Sent: Thursday, December 26, 2019 11:10 AM
To: 'Midrange Systems Technical Discussion' <midrange-l@xxxxxxxxxxxxxxxxxx>
Cc: Matt Olson <Matt.Olson@xxxxxxxx>
Subject: RE: Calling a stored procedure from RPG
Anytime I am passing parameters for returning data, as opposed to returning a result set, I set them both as INOUT.
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Matt Olson via MIDRANGE-L
Sent: Thursday, December 26, 2019 11:04 AM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxxxxxxxx>
Cc: Matt Olson <Matt.Olson@xxxxxxxx>
Subject: Calling a stored procedure from RPG
Does anyone know how to call a SQL Stored procedure from RPG and pass in integer and receive the response back in the output variable?
We are having an issue where the input parameter doesn't appear to be mapped to the input parameter (RTID), and the CREDSTRING output variable is always blank.
We are able to successfully call the procedure using straight SQL. It just doesn't work from RPG.
Here is the SQL Stored procedure def:
CREATE PROCEDURE TESTLIB.GETCREDSTRING (
IN RTID INTEGER ,
OUT CREDSTRING VARCHAR(50) )
LANGUAGE SQL
SPECIFIC TESTLIB.GETCRDSP
NOT DETERMINISTIC
MODIFIES SQL DATA
CALLED ON NULL INPUT
SET OPTION ALWBLK = *ALLREAD ,
ALWCPYDTA = *OPTIMIZE ,
COMMIT = *NONE ,
DECRESULT = (31, 31, 00) ,
DFTRDBCOL = TESTLIB,
DYNDFTCOL = *NO ,
DYNUSRPRF = *USER ,
SRTSEQ = *HEX
BEGIN
....
...
END ;
One input parameter RTID (integer), and one output parameter (credstring)
Our RPG program is as follows:
CTL-OPT DATFMT(*USA) DEBUG(*YES) DFTACTGRP(*NO) ALWNULL(*USRCTL);
DCL-S InParm int(10);
DCL-S OutParm VARCHAR(50);
InParm = 0000600002;
EXEC SQL
call getcrdsp (:Inparm, :Outparm);
*INLR = *ON;
Return;
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
Subject to Change Notice:
WalzCraft reserves the right to improve designs, and to change specifications without notice.
Confidentiality Notice:
This message and any attachments may contain confidential and privileged information that is protected by law. The information contained herein is transmitted for the sole use of the intended recipient(s) and should "only" pertain to "WalzCraft" company matters. If you are not the intended recipient or designated agent of the recipient of such information, you are hereby notified that any use, dissemination, copying or retention of this email or the information contained herein is strictly prohibited and may subject you to penalties under federal and/or state law. If you received this email in error, please notify the sender immediately and permanently delete this email. Thank You
WalzCraft PO Box 1748 La Crosse, WI, 54602-1748 www.walzcraft.com<
http://www.walzcraft.com> Phone: 1-800-237-1326
As an Amazon Associate we earn from qualifying purchases.