×
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.
I have encountered a situation where I am processing some JSON data with an
RPG program and Scott Klement's YAJL port.
The issue is the data I am processing could contain anything from English
to Russian to Chinese text.
The data, once processed, is stored in a PF.
So, the question is, what would be the proper way to:
1. Read the data in with YAJL
2. Define a PF field and store the data in a PF (is, UCS2, UTF-8, etc)
3. Allow an RPG program to read through this data and process is (ie, will
they need to use UCS2 fields, or iconv to convert it, etc).
What I tried was defining the field in the DDS as UCS2:
A VALUE 1000G CCSID(13488)
Then I process and store it:
val = YAJL_object_find(node:'value');
VALUE= yajl_get_string(val);
exec sql
insert into MYFILE(
VALUE)
VALUES(
:VALUE);
enddo;
Probably not correct, but my head is spinning from reading all the docs as
to how to handle this.
What I want to avoid is making the user's job run in a specific CCSID (such
as 65535 or 37).
Finally, how can I verify that the data is correct as a 5250 emulator
(using the latest IBM i Access) doesn't seem to display Chinese characters
properly to begin with.
Thanks!
Brad
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 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.