×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
what happens if it like this
{
"AccountNumber":"31695801",
"Name":"JOHN"
Plus 20 other fields
{
Thanks
John Slanina
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxx> On Behalf Of Barbara Morris
Sent: Monday, April 23, 2018 3:39 PM
To: rpg400-l@xxxxxxxxxxxx
Subject: Re: How to use data-into with json that don't have an object name ?
On 2018-04-23 2:26 PM, Slanina, John wrote:
I see no option to use data-into when you are parsing the root object like this.
{
"AccountNumber":"31695801"
{
When the JSON just represents a single value like that, code the target variable as a standalone field.
dcl-s accountNumber int(10);
dcl-s jsonString varchar(100);
jsonString = '{"AccountNumber":"31695801"}'; data-into accountNumber %data(jsonString : 'case=any')
%parser('JSONPARSE'); dsply accountNumber;
(Using the JSON parser whose source is in QOAR/QRPGLESRC, source member
JSONPARSE.)
--
Barbara
--
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.