从本机访问插件的sqlite数据库

Access sqlite database of plugin from native

我正在开发一个离子应用程序,它有几个本机部分

我正在为本地数据库使用这个插件

https://github.com/litehelpers/Cordova-sqlite-storage

我在混合部分创建或访问它没有问题,功能如下:

 var db = window.sqlitePlugin.openDatabase({
          name: "dbApplication.sqlite",
          path: 'documents/',
          environment: "SQLITE_ENV_MOBILE",
          bgType: 1
        });

        db.transaction(function (tx) {

          tx.executeSql("INSERT INTO main.table ( name, email, sfid ) VALUES (?,?,?)", [user.name, user.email, user.sfid], function () {
            deferred.resolve();
          }, errorCallback);

        }, errorCallback);

但我正在尝试从 android 本机部分访问它,代码如下:

    private static String DB_PATH = "documents/";
    private static String DB_NAME ="dbApplication.sqlite";// Database name

public boolean openDataBase() throws SQLException
    {
        String mPath = DB_PATH + DB_NAME;
        mDataBase = SQLiteDatabase.openDatabase(mPath, null, SQLiteDatabase.CREATE_IF_NECESSARY);
        return mDataBase != null;
    }

    public HashMap getDataSigner(Integer signerId) {
        openDataBase();
        SQLiteDatabase db = mDataBase;
        //"CREATE TABLE IF NOT EXISTS main.signers (idSigner INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT, idNumber TEXT, rol TEXT)"

        Cursor c=db.rawQuery("SELECT name, idNumber FROM signers WHERE idSigner="+signerId+"", null);
        HashMap signer = new HashMap();
        if(c.moveToFirst())
        {
            signer.put("name", c.getString(0));
            signer.put("idNumber", c.getString(1));

        }
        return signer;
    }

它returns出现以下错误:

    Failed to open database 'documents/dbApplication.sqlite'.
android.database.sqlite.SQLiteCantOpenDatabaseException: unknown error(Sqlite code 14): Could not open database,(OS error - 2:No such file or directory)

所以我的问题是:对于使用 sqlite 插件创建的数据库,android 中数据库的正确路径是什么?

我也尝试过深入挖掘插件代码,但我不是很了解,因为我不是一个好的android程序员

此外,如果有人可以从 IOS 本机访问它,那就太棒了,因为我稍后会需要它

谢谢!

我自己回答

Android 中的正确路径是:

mDataBase = SQLiteDatabase.openDatabase(this.cordova.getActivity().getDatabasePath(DB_NAME).getAbsolutePath(), null, SQLiteDatabase.CREATE_IF_NECESSARY);

另外,使用前记得关闭连接,否则无法使用