关于在an​​droid的mobilefirst平台的sql适配器中的缓存

时间:2015-05-13 05:28:32

标签: ibm-mobilefirst

init在android设备上创建集合的位置是什么? 我使用android 4.4.4 ....

1 个答案:

答案 0 :(得分:0)

你的问题非常不清楚。但我会假设你实际上指的是JSONStore。如果你没有提到JSONStore,那么,努力写出一个明智的问题。

在设备中查看JSONStore存储位置的以下主题:http://www-01.ibm.com/support/knowledgecenter/SSHS8R_7.0.0/com.ibm.worklight.dev.doc/devref/r_jsonstore_troubleshooting_overview.html

Android emulator:
$ adb shell
$ cd /data/data/com.<app-name>/databases/wljsonstore
$ sqlite3 jsonstore.sqlite  

iOS simulator:
$ cd ~/Library/Application Support/iPhone Simulator/7.1/Applications/<id>/Documents/wljsonstore
$ sqlite3 jsonstore.sqlite

Windows Phone 8 (Silverlight):
$ cd C:\Data\Users\DefApps\AppData\<id>\Local\wljsonstore
$ sqlite3 jsonstore.sqlite

Windows 8 simulator
$ cd C:\Users\<username>\AppData\Local\Packages\<id>\LocalState\wljsonstore
$ sqlite3 jsonstore.sqlite

Note: JavaScript only implementation that runs on a web browser (Firefox, Chrome, Safari, Internet Explorer) does not use an SQLite database. The file is stores in HTML5 LocalStorage.