×
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.
Are you defining QtmhWrStout yourself? If so, you should be able to make the parameter larger than 32767. Here's a snippet of RPG code from an app I have in production:
Dcl-pr QtmhWrStoutAPI extproc('QtmhWrStout') ;
DtaVar char(131072) options(*varSize) const ;
DtaVarLen int(10) const ;
ErrorCode likeDs(QUSEC) ;
End-pr;
-----Original Message-----
From: Arco Simonse [mailto:arco400@xxxxxxxxx]
Sent: Friday, August 24, 2018 9:33 AM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxx>
Subject: noxDB: How to output a large JSON tree to QtmhWrStout
Hi,
I'm just trying out Niels Liisberg's noxDB implementation (
https://github.com/NielsLiisberg/noxDB), and I wonder how I can send a large JSON result to the webserver.
The wonderful function json_sqlResultSet() works really nice, and gives a pointer to the result rows.
From there, I'd like to send the result to the webserver. I found the
function json_AsJsonText() from which I can forward to QtmhWrStout.
But it seems limited to a size of 32767 bytes, which is not sufficient for large data.
Am I missing something obvious here?
Thanks,
Arco Simonse
As an Amazon Associate we earn from qualifying purchases.