如何在sqlite中导入txt文件?
我们如何使用sqlite的txt文件作为备份导入sqlite中的数据?使用 xml 文件更好吗?
how can we import data in sqlite with a sqlite's txt file as a backup? Is it better to use a xml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SQLlite 数据库文件是可移植的,没有特别的理由将它们转储为文本,只是为了将它们重新导入数据库,除非您需要人类可读的东西。
SQLlite database files are portable, there's no particular reason to dump them to text only to reimport them into a database except if you need something human-readable.
也许您的意思是导入 CSV 文件(逗号分隔值)。
我建议这样!
http://www.sqlite.org/cvstrac/wiki?p=ImportingFiles
Maybe you mean to import a CSV file (Comma-Separated Values).
I suggest this way!
http://www.sqlite.org/cvstrac/wiki?p=ImportingFiles