如何在 Android 设备上将 sqlite 数据库导出为 csv 文件?
CSV 文件稍后将通过网络发送以存储在外部服务器中。
The CSV file will later be sent over a network for storage in external servers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用 sqlitestudio 将数据库导出到 csv 或从 csv 导入数据库。 http://sqlitestudio.pl/
I use sqlitestudio to export/ import my database to and from csv. http://sqlitestudio.pl/
打开数据库;
为每个表创建一个 csv 文件,读取所有行并将它们导出到文件(根据 csv 格式);
关闭数据库
Open the database;
For every table create a csv file, reading all the rows and exporting them to a file (according the csv format);
Close the database