coocood / VContentProvider

A Library for building SQLite database and Content Provider on Android.
41 stars 9 forks source link

JSON insert Question/Enhancment #5

Open YuraLaguta opened 11 years ago

YuraLaguta commented 11 years ago

Is it possible to insert JSONArrays with nested arrays?

for example

{ "id": 7777, "aaa":"aaaAaaa: "bars": [ "bar1", "bar2" ], "foo" : "fooString" },

coocood commented 11 years ago

Not supported yet. you can try to change VContentProvider.java#L125 to

String value = json.get(column).toString();

and see if it works.