Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fetch large JSON response in android Sybase Unwired Platform

I know normal parsing in Android and Java .

But , here the case is bit different .

In cases when the default String (300) is set I can fetch JSON String with PAGESIZE being set as somewhat 2096 and I can generate code in Sybase.

But if I want to get data as large which is more than size 300 characters or if 300000 characters then the MBO hit can get it but not via code in Android .

In android code I get TRUNCATED data + some data of JSON fetched after I hit for synchronize

So I need to know how can I fetch large JSON string as result via Android code
.

Kindly note : This question is for Sybase Android application development

A similar question has been posted in SAP forum but yet to answer http://scn.sap.com/thread/3738150

like image 340
Project Android Avatar asked May 07 '15 06:05

Project Android


1 Answers

for large data try to save your data in a database from the beginning (it's a better practice), then deal with it using SQLite.

like image 50
Poula Adel Avatar answered Oct 26 '22 23:10

Poula Adel