|
RPG's not the right choice for this...
Unless you happen to be on 7.3 and can build a dynamic SQL statement that
uses the JSON_TABLE() function.
I think PHP or Python would be able to do this pretty easy.
Charles
On Wed, Aug 16, 2017 at 5:09 AM, Maria Lucia Stoppa <mlstoppa@xxxxxxxxx>
wrote:
Henrik, it doesn't seem to me it works the way I need it to work, because
in your specification "%addr(cust)" cust is the name of the final variable
that must be loaded with content retrieved from json, while in my case it
is exactly what I don't know; instead I have a variable namevar which
contains "cust" read from data structure.
2017-08-15 13:18 GMT+02:00 Maria Lucia Stoppa <mlstoppa@xxxxxxxxx>:
I see. Ok I will try it. Thank youcust
Il 14/Ago/2017 14:05, "Henrik Rützou" <hr@xxxxxxxxxxxx> ha scritto:
This is where it gets a little tricky.
Let assume you have a name field frmpos 11 topos 41 in the DS named
numericthe storage
address for name will start at addr = %addr(cust)+frmpos-1
Then you can move the JSON data byte to byte into the DS in a for-loop.
The
reason that
you have to move it byte for byte and not as a block is that you may
overwrite other data if
the block is bigger than the result field.
This is rather simple for a alpha field but rather complicated for
mlstoppa@xxxxxxxxx>and even packed
numeric fields.
On Mon, Aug 14, 2017 at 1:39 PM, Maria Lucia Stoppa <
namewrote:
Sure, there is something I am missing.be an
I make use of API often, so in my case at a certain point there might
RPG variable rfNAME evaluated through API (or at least other two *methods
I can think of) whose content is "NAME" and the JSON current node
variableis
"NAME" whose paired value is "Maria Lucia"; then comparing rfNAME andJSON
nodename I finally know I have found the right JSON node for a
specificationbelonging to my data structure: how would you write an RPG
howwhich assign "Maria Lucia" to RPG variable NAME?mlstoppa@xxxxxxxxx>
2017-08-14 10:35 GMT+02:00 Henrik Rützou <hr@xxxxxxxxxxxx>:
Here is what you need and it will give you alle the info you need:apis/quslfld.htm
https://www.ibm.com/support/knowledgecenter/en/ssw_i5_54/
On Mon, Aug 14, 2017 at 9:47 AM, Maria Lucia Stoppa <
wrote:
If the variable that contains the name is untied to its pointer
scritto:can
it
be used to load data in the right memory position?
Il 14/Ago/2017 09:32, "Henrik Rützou" <hr@xxxxxxxxxxxx> ha
that
Maria,
if you define the datasctructure externally there are API's
sensitivecan
read
the field names in the DS
within your program and then you can use JSON-"find".
There may however be a problem since JSON names are case
fromandall I
DS
mlstoppa@xxxxxxxxx>names probably
are in upper case.
On Mon, Aug 14, 2017 at 9:12 AM, Maria Lucia Stoppa <
wrote:
Hi everybody
Thank you all for this interesting thread. Just let me sum up
have toread
in
it.
I would leave Javascript outside this discussion, because I
objectdo
this
job in pure RPG ILE without the help of WDSC or other developenvironment.
Anyway, JSON format being pretty much similar to Javascript
availabledescription is done on purpose as it makes data immediately
in
aprogrammatic
Javascript object just after being read.
I think all of you got the point of my request, which is to
read JSON data to be loaded into a data structure; anyway,
aall
with ayour
answers it seems impossible to match a JSON pair name/value
DS
variable/value and that leads to build a couple of programs:
identifyinggenerator
appropriatecode which knowing the data structure to be loaded can write
specifications which in turn know what to read.
Because the obstacle here is how to make a JSON node
JSONitself
in
a given data structure, as Jon clearly pointed out.
In my case, types and lengths of variables against those of
shouldvalues
are
not an issue, because they must match otherwise an error
pointersspecificationsarise.through
Let me try to reverse the approach: my routine starts looping
the
data structure definition, let's say by reading DS D
genericor
whatever is needed as this is a different topic, then the
Givenroutine
can look for a specific information into the JSON. But how?
my
ignorance, I guess variables' names are converted into
pointer?at
obtain acompile
time, but is there a way to reverse the process so that to
variable which contains the name of a variable given a
jon.paris@xxxxxxxxxxxxxx>:
2017-08-14 3:55 GMT+02:00 Jon Paris <
somethingwill
You missed my point Brad - which was that YAJL_OBJECT_LOOP
genericloop
through anything. The rest of it was just showing how the
object
can be compared to find its identity.
But I agree in as much as one always needs to know
queryin a
utilitybusiness
processing environment. Unless you are simply writing a
tobvstone@xxxxxxxxx
report
(for example) on what it finds.
Jon Paris
www.partner400.com
www.SystemiDeveloper.com
On Aug 13, 2017, at 12:22 PM, Bradley Stone <
wrote:jon.paris@xxxxxxxxxxxxxx
On Sun, Aug 13, 2017 at 1:53 PM, Jon Paris <
wrote:
Not necessary to know the structure Nathan as you can
nodewhat
kind
of node you are dealing with.
A straight object loop can also be used - for example:
Dow YAJL_OBJECT_LOOP( customerNode: i: key:
););
Select;
When key = 'ID';
customer(c).id = YAJL_GET_NUMBER( node );
When key = 'Name';
customer(c).name = YAJL_GET_STRING( node
names
In this instance I only need certain fields and the
theare
known
-
but the YAJL_OBJECT_LOOP itself dd not require that I know
least aknowingnames
or
types of the objects.
How is knowing the names, data types and container not
the
structure?
You know you're in a customer array that contains at
thenumeric
ID and character name. I'd say that's at least knowing
butstructure
at least partially, if not wholly.
As I said earlier I think code gen is the way to go -
allowsthe
JSON
structure can be dynamically determined just as XML-SAX
"knows"you
to
do
with XML.
Yes, that makes sense, but once you do the program
and/orthe
structure.structure and is built appropriately around thus said
Bradley V. Stone
www.bvstools.com
MAILTOOL Benefit #2: The ability to specify a "From"
man/listinfo/rpg400-liSeries)"Reply
To"
email address!
--
This is the RPG programming on the IBM i (AS/400 and
(RPG400-L)
mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mail
archivesor email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the
iSeries)ourrelatedat http://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxx for any subscription
questions.
Help support midrange.com by shopping at amazon.com with
affiliate
link: http://amzn.to/2dEadiD
--
This is the RPG programming on the IBM i (AS/400 and
ourrelated(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.
Please contact support@xxxxxxxxxxxx for any subscription
questions.
Help support midrange.com by shopping at amazon.com with
relatedrelatedaffiliate
(RPG400-L)link: http://amzn.to/2dEadiD
--
Maria Lucia Stoppa
mlstoppa@xxxxxxxxx
--
This is the RPG programming on the IBM i (AS/400 and iSeries)
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.
Please contact support@xxxxxxxxxxxx for any subscription
affiliatequestions.
Help support midrange.com by shopping at amazon.com with our
(RPG400-L)link: http://amzn.to/2dEadiD
--
Regards,
Henrik Rützou
http://powerEXT.com <http://powerext.com/>
--
This is the RPG programming on the IBM i (AS/400 and iSeries)
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.
Please contact support@xxxxxxxxxxxx for any subscription
(RPG400-L)affiliateaffiliatequestions.
Help support midrange.com by shopping at amazon.com with our
(RPG400-L)link: http://amzn.to/2dEadiD--
This is the RPG programming on the IBM i (AS/400 and iSeries)
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.
Please contact support@xxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our
(RPG400-L)link: http://amzn.to/2dEadiD
--
Regards,
Henrik Rützou
http://powerEXT.com <http://powerext.com/>
--
This is the RPG programming on the IBM i (AS/400 and iSeries)
affiliatemailing 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.
Please contact support@xxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our
link: http://amzn.to/2dEadiD
--
Maria Lucia Stoppa
mlstoppa@xxxxxxxxx
--
This is the RPG programming on the IBM i (AS/400 and iSeries)
affiliatemailing 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.
Please contact support@xxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our
(RPG400-L)link: http://amzn.to/2dEadiD
--
Regards,
Henrik Rützou
http://powerEXT.com <http://powerext.com/>
--
This is the RPG programming on the IBM i (AS/400 and iSeries)
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.
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
--
Maria Lucia Stoppa
mlstoppa@xxxxxxxxx
--
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.
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.