从phonegap中的资产访问sqlite数据库

时间:2015-02-25 10:05:21

标签: android cordova phonegap-plugins

我对sqlite数据库的phonegap有疑问。我在资产文件夹" myDB.db"中预先填充了数据库。我的问题是我想直接从assets文件夹访问数据库到phonegap。我不想复制到SD卡或不使用外部数据库。   此致

1 个答案:

答案 0 :(得分:1)

请在您的代码中尝试此操作

        //Please place your db file in wwww directory ,here example : projectpath/www/santosh.db
            db = window.sqlitePlugin.openDatabase({name: "santosh.db", createFromLocation: 1});

如需更多参考,请按照以下链接中的步骤进行操作...

http://santoshshinde2012.blogspot.in/2015/03/open-existing-sqlite-file-in-phonegap.html

希望它可以帮到你。