如何在首次启动应用程序时将填充的 SQL 数据库复制到手机内存?
我有一个使用 html5、jquery 和 Phonegap 创建的 Android 应用程序,它将条目存储到 sql 数据库中。我已经将所有数据填充到数据库中。现在,我的问题是如何保存这个填充的数据库并将其与 apk 文件打包在一起,以便在用户安装应用程序时将其复制到手机内存中?
我使用 Chrome,这就是我填充数据的地方。
I have an android app created using html5, jquery and phonegap and it stores entries into sql db. I already have populated all data into the database. Now, my question is how can I save this populated db and pack it with the apk file so that it'll just copy it to phones memory when the user installs the app?
I used Chrome and that is where I populated the data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至于导出已填充数据库中的数据,我建议您参考 在这篇文章中,他们介绍了如何做到这一点。
一旦你有了数据库的转储,我相信最简单的方法就是在应用程序第一次加载时手动填充数据库。如果您使用像 html5sql.js 这样的库,您将能够轻松地完成此操作,基本上只需一步即可。
As far as exporting the data you have in your already populated database, I would refer you over to this post where they walk through how that might be done.
Once you have a dump of your database, I believe the easiest is to just manually populate the database the first time the app loads. If you use a library like html5sql.js you will be able to do this easily and in basically one step.