SQLite 数据库到 Android
我有一个要求,我必须将数据从文本移动到 Android 上的 SQLite DB 中。
一种方法是将文本文件移动到资产管理器,然后我可以从那里将数据插入数据库。
有什么方法可以使用桌面应用程序将所有数据插入到 SQlite DB 中,然后将 SQLite DB 与 android 应用程序一起发送
I have a requirement, where I have to move data from text into SQLite DB on Android.
One way to do this was to move the text file to asset manager and from there I can insert data into the DB.
Is there any way through which I can insert all the data into the SQlite DB using Desktop app and then just ship the SQLite DB with the android app
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该对你有帮助。
在桌面上准备 sqllite,然后将其传输到 android
http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/
This should help you.
Prepare the sqllite in desktop and then transfer it over to android
http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/
根据需要输入的数据量,您也可以在应用程序内执行此操作。例如
Depending on how much data needs to be input, you could also do it from within the application. E.g.
玩得开心:
http://sqlitebrowser.sourceforge.net/index.html
编辑:
然后StackOverflow 上已经有解决方案:
发布带有数据库的应用
Have fun:
http://sqlitebrowser.sourceforge.net/index.html
Edit:
and then the solution is already on StackOverflow:
Ship an application with a database