|
"RPG400-L" <rpg400-l-bounces@xxxxxxxxxxxx> wrote on 10/16/2017 04:56:36
PM:
Thx. Dave. You really make it sound easy. I'm not sure the code you
have provided me is necessary for my solution. But thx. I'll
eventually get it. I'd like to hear from others and any code
demonstrations would be nice. To back up the theory behind what you
explain. Because honestly there is a hell of a lot of concept
explained on this out there but not enough concrete examples. Write
my code for me? Not hardly. I'm sure most of you learn best from
examples also.
I threw this together and tested it in debug. It fetched multiple
rows and the data was stored in the host_data array as expected.
**free
ctl-opt AlwNull(*USRCTL) DatFmt(*ISO) TimFmt(*ISO)
DftActGrp(*NO) ActGrp(*CALLER)
Debug Option(*SRCSTMT:*NODEBUGIO);
dcl-c var_num 20;
dcl-s sqlstmt varchar(900)
inz('Select * from SHR460/ACSYAPPV02 +
where Application_Code > ''CO'' +
order by Application_Code, Abbreviation_Code'
);
dcl-s idx packed(3:0);
dcl-s host_data char(255) dim(var_num);
dcl-s host_ind packed(5:0) dim(var_num) inz(*zero);
dcl-ds MySqlVar_t qualified template;
Type int(5:0);
Len int(5:0);
Rsrvd char(12);
Info1 char(16);
Data pointer overlay(Info1);
Rslt_Loca int(20:0) overlay(Info1);
Info2 char(16);
Ind pointer overlay(Info2);
Row_Change int(10:0) overlay(Info2);
Rslt_Rows int(10:0) overlay(Info2);
NameLen int(5:0);
Name char(30);
ExtdVar char(80) pos(1);
LongL int(10:0) overlay(ExtdVar:1);
RsvdL char(28) overlay(ExtdVar:*next);
InfoL char(16) overlay(ExtdVar:*next);
DataL pointer overlay(InfoL);
TNameLen int(5:0) overlay(ExtdVar:*next);
TName char(30) overlay(ExtdVar:*next);
end-ds;
dcl-ds MySqlDA qualified based(MySqlDA_p);
Id char(8);
Size int(10:0);
Ncnt int(5:0);
Dcnt int(5:0);
Var likeds(MySqlVar_t) dim(var_num);
end-ds;
exec sql set option ALWBLK = *NONE, CLOSQLCSR = *ENDACTGRP,
COMMIT = *NONE, DATFMT = *ISO, EXTIND = *YES,
LANGID = ENU, SRTSEQ = *HEX,
NAMING = *SYS, USRPRF = *USER;
exec sql declare DLCTEST_Cursor
cursor for DLCTEST_Stmt;
MySqlDA_p = %alloc(%size(MySqlDA));
MySqlDA.Size = %size(MySqlDA);
MySqlDA.Ncnt = %elem(MySqlDA.Var);
exec sql prepare DLCTEST_Stmt
into :MySqlDa
using system names
from :sqlstmt;
if sqlcode <> 0;
return;
endif;
for idx = 1 to MySqlDA.Dcnt;
MySqlDA.Var(idx).Data = %addr(host_data(idx));
MySqlDA.Var(idx).Ind = %addr(host_ind(idx));
endfor;
exec sql open DLCTEST_Cursor;
if sqlcode <> 0;
return;
endif;
DoW sqlcode = 0;
exec sql fetch next from DLCTEST_Cursor
using descriptor :MySqlDa;
if sqlcode = 0;
// process sql fetched cursor and put values in a host ds
endif;
enddo;
return;
Sincerely,
Dave Clark
--
int.ext: 91078
direct: (937) 531-6378
home: (937) 751-3300
Winsupply Group Services
3110 Kettering Boulevard Dayton, Ohio 45439 USA
(937) 294-5331
*********************************************************************************************
This email message and any attachments is for use only by the named
addressee(s) and may contain confidential, privileged and/or proprietary
information. If you have received this message in error, please
immediately notify the sender and delete and destroy the message and all
copies. All unauthorized direct or indirect use or disclosure of this
message is strictly prohibited. No right to confidentiality or privilege
is waived or lost by any error in transmission.
*********************************************************************************************
--
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: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link: http://amzn.to/2dEadiD
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.