我可以获得 JSON 格式的 SQLite 视图吗?
我正在使用 Firefox SQLite 插件,并且可以选择导出为 CSV。可以用 JSON 来实现吗?
谢谢
I am using Firefox SQLIte plugin and I have an option to export as CSV. Is it possible to do it on JSON?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SQLite 是一个关系数据库和CSV 是表格数据的自然文本表示,如关系模型中所示。 JSON 是对象的文本表示。因此,它并不真正适合表格数据的表示。
也就是说,您可以使用 SQLite 数据库生成的 CSV 文件生成 JSON 输出。
SQLite is a relational database and CSV is a natural textual representation of tabular data, as seen in the relational model. JSON is a textual represenation of an object. As such, it's not really suited for the representation of tabular data.
That said, you can use the CSV file produced from the SQLite database to generate JSON output.
我使用 sqlite studio 将结果转换为 json。它是开源的,做得很好!尽管您可能需要稍微处理一下 json 数据,因为它包含 DDL 等内容。
I used sqlite studio to convert result to json. It is open source it does a good job! Although you might need to massage the json data a bit because it contains things like DDL, etc.