如何在SQLite数据库中存储JSON对象?正确的方法是什么?
一个位置是“Blob 类型”列。如果我可以将 JSON 对象转换为字节数组并使用文件输出流
另一个想法是将文本列存储为字符串
import org.json.JSONObject;
JSONObject jsonObject;
public void createJSONObject(Fields fields) {
jsonObject = new JSONObject();
try {
jsonObject.put("storedValue1", fields.storedValue1);
jsonObject.put("storedValue2", fields.storedValue2);
jsonObject.put("storedValue3", fields.storedValue3);
jsonObject.put("storedValue4", fields.storedValue4);
jsonObject.put("storedValue5", fields.storedValue5);
jsonObject.put("storedValue6", fields.storedValue6);
} catch (JSONException e) {
e.printStackTrace();
}
}
将JSONObject转换为String并保存为TEXT/VARCHAR。在检索同一列时将String转换为JSONObject。
例如
写入数据库
String stringToBeInserted = jsonObject.toString();
//and insert this string into DB
从数据库读取
String json = Read_column_value_logic_here
JSONObject jsonObject = new JSONObject(json);
另一种选择是为SQLite使用新的JSON扩展。我自己刚刚遇到过这个:https://www.sqlite.org/json1.html这将允许您执行特定级别的查询存储的JSON。如果您使用VARCHAR或TEXT存储JSON字符串,您将无法查询它http://charlesleifer.com/blog/using-the-sqlite-json1-and-fts5-extensions-with-python/
没有用于此的数据类型。。您只需要将其存储为VARCHAR或TEXTjsonObject.toString()代码>