× 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.



+1

On Tue, Apr 24, 2018 at 8:28 PM, Scott Klement <rpg400-l@xxxxxxxxxxxxxxxx>
wrote:

John,

If it helps, I recently added DATA-INTO support for the YAJL JSON parser.
I haven't benchmarked it with DATA-INTO, but when I benchmarked YAJL by
itself, it was extremely fast.
http://www.scottklement.com/yajl/

Might be worth a try? Works fine with your example.

dcl-ds myData qualified;
accountNumber int(10);
name varchar(40);
// ... 20 other fields ...
end-ds;

json = '{ +
"AccountNumber":"31695801", +
"Name":"JOHN" +
}'; // plus 20 other fields


data-into myData %DATA(json: 'case=any') %PARSER( 'YAJLINTO');

-SK




On 4/24/2018 7:24 AM, Slanina, John wrote:

It was an example, most of my API's are far more complex.

I love xml-into... I took a 4 1/2 hour job that ran through 50,000 xml
docs and save 3 hours by using xml-into. The speed of
It out preformed all other 3rd party parsers I have tried. I thought
data-into would be the same in performance.

I started to testing with JSON Table by loading them with
SYSTOOLS.HTTPGETCLOBVERBOSE.
But that cannot be used on a production machine.

If you have java in debug on your machine it breaks some IBM function SQL
that is one of them.

Thanks
John Slanina


-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxx> On Behalf Of Birgitta
Hauser
Sent: Tuesday, April 24, 2018 12:58 AM
To: 'RPG programming on the IBM i (AS/400 and iSeries)' <
rpg400-l@xxxxxxxxxxxx>
Subject: RE: How to use data-into with json that don't have an object
name ?

Do you really need a DATA-INTO Program for this kind of Basic JSON?
IMHO using embedded SQL is far more easy:

DCL-DS DSData Qualified;
AccountNumber Integer;
Name VarChar(50);
//20 other Fields
End-DS

DCL-S JSONDocument VarChar(4096)
inz('{ +
"AccountNumber":"31695801", +
"Name":"JOHN" +
//Plus 20 other fields
{');

Exec SQL
Select * into :DSData
from JSON_Table(JSONDocument, '$'
Columns("AccountNumber" Integer,
"Name" VarChar(50)
//20 other fields)) x;

Mit freundlichen Grüßen / Best regards

Birgitta Hauser

"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok) "What
is worse than training your staff and losing them? Not training them and
keeping them!"
"Train people well enough so they can leave, treat them well enough so
they don't want to." (Richard Branson)


-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxx> On Behalf Of Slanina, John
Sent: Montag, 23. April 2018 21:48
To: rpg400-l@xxxxxxxxxxxx
Subject: RE: How to use data-into with json that don't have an object
name ?

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
--
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

--
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

--
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 thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.