将 sqlite 查询结果放入 txt 文件的批处理文件

问题描述 投票:0回答:0

我知道如何通过 bat 文件将 sqlite 文件导出到 csv,但是我想将查询导出到 txt 文件的部分 - 例如在查询前后有文本,例如带有公司详细信息的格式正确的标题。

我最好的猜测是生成一个 txt 文件,然后将其与页眉和页脚 txt 文件结合起来,但这也行不通,因为数据本身需要在列表视图中,而不是表格,例如。

这是我希望输出的示例:

This is a list of items in the database for you to see.

Item {{1}}
Name: {{ 1st row name }}
Description {{ 1st row description}}

Item {{2}}
Name: {{ 2nd row name }}
Description: {{ 2nd row description }}

And that’s it, all the appropriate entries in this table. I hope you enjoyed reading.

我不介意这使用什么语言或者是否可以直接通过批处理文件实现。

我在哪里可以找到帮助?

sqlite batch-file
© www.soinside.com 2019 - 2024. All rights reserved.