Ken,
You don't need to define the Data subfield I don't think. That way if Ary changes in size or dimension, you don't need to alter the Data subfield definition.
DCL-DS Debug Qualified;
Data;
Ary Char(500) OverLay(Data) Dim(19999);
END-DS;
Kurt Anderson
Sr. Programmer/Analyst - Application Development, Service Delivery Platform
-----Original Message-----
From: WDSCI-L [mailto:wdsci-l-bounces@xxxxxxxxxxxx] On Behalf Of Ken Killian
Sent: Thursday, May 01, 2014 9:44 PM
To: Rational Developer for IBM i / Websphere Development Studio Client for System i & iSeries
Subject: Re: [WDSCI-L] Cannot append to a field
I often have to work with HUGE Character strings return from some web-service that I consume....
So, I define my work Variable like this:
DCL-DS Debug Qualified;
Data Char(9999900);
Ary Char(500) OverLay(Data) Dim(19999);
END-DS;
So, I load this Data-Structure, so I can view all my data inside of Debug. It has helped me find a lot of errors, especially when I got special characters I was NOT expecting...
With RDI, I can copy to the clip-board from the MONITOR view to NotePad++ to do a scan for values...
-Ken Killian-
PS. Yes, this work Variable is way over defined... <LOL>
This is my main default input variable that I use. Normally, this more than big enough for me.
DCL-DS Input Qualified;
String CHAR(65000);
Array CHAR(1000) OverLay(String) Dim(65);
END-DS;
-----Original Message-----
From: WDSCI-L [mailto:wdsci-l-bounces@xxxxxxxxxxxx] On Behalf Of Buck Calabro
Sent: Thursday, May 01, 2014 2:03 PM
To: wdsci-l@xxxxxxxxxxxx
Subject: Re: [WDSCI-L] Cannot append to a field
On 5/1/2014 1:20 PM, Colson, Edmund B wrote:
OK, guys. I have a program variable in an SQLRPGLE program I am debugging in RDi 9.0.1 defined as 2000 characters. I am loading this variable with an SQL statement to which I am appending " or CPINSD = XXX" where "XXX" is an alphanumeric number coming from a record in a file. The variable gets to a length of 1024 and I can't append the closing parenthesis to close the statement. I have proven that the length can't exceed 1024 characters by removing the last "or CPINSD = XXX" from the variable so the length is less than 1024 bytes, and the closing parenthesis is properly added to the variable. When I dump the program, the dump shows that the variable has 2000 characters allotted to it.
Is there some limitation that says that a variable in a program cannot exceed 1024 characters?
No, there is no 1024 limit, but the default Monitor setting is to only show the first 1024. An example of using your own size:
dcl-s testit char(2048);
%subst(testit: 1025: 4) = 'Buck';
In the Monitors view, I add an expression: testit:c 1032 (I only want to see 1032 characters.) Double click the monitored expression and out there near the end is 'Buck'. You can, of course, go all the way out to the declared size of the variable.
--buckn
--
This is the Rational Developer for IBM i / Websphere Development Studio Client for System i & iSeries (WDSCI-L) mailing list To post a message email: WDSCI-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/wdsci-l
or email: WDSCI-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at
http://archive.midrange.com/wdsci-l.
--
This is the Rational Developer for IBM i / Websphere Development Studio Client for System i & iSeries (WDSCI-L) mailing list To post a message email: WDSCI-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/wdsci-l
or email: WDSCI-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at
http://archive.midrange.com/wdsci-l.
As an Amazon Associate we earn from qualifying purchases.