将JSONObject转换为String并另存为TEXT / VARCHAR。 在检索同一列时,将String转换为JSONObject。
例如
写入数据库
String stringToBeInserted = jsonObject.toString();//and insert this string into DB
从数据库读取
String json = Read_column_value_logic_hereJSonObject jsonObject = new JSonObject(json);



