Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些带有一些 sqlite 命令的 sqlite 脚本,例如:
是否有使用 C++ 的 Sqlite 接口在 SqliteDB 中运行此脚本,而不是使用 sqlite 命令行 shell 将文件重定向到 sqlite?
谢谢
如果您确实需要输出,那么通过命令行 shell 运行脚本是迄今为止最简单的(它具有-batch抑制除实际结果之外的所有输出的参数)。
-batch
.-commands 是在 shell 中实现的,而不是在 API 中。因为API不做输出,你提到的命令是用于控制输出的。如果你真的想用 API 运行脚本,你需要自己做输出,或者硬编码你想要的格式,或者.自己解释 -commands。
.