how do I store a JSON Object in an SQLite database? What is the correct way?
one place is the blob type column. if i can convert the JSON object into byte array an
There is no data types for that.. You need to store it as VARCHAR or TEXT only.. jsonObject.toString();
jsonObject.toString();