连接到 awk 脚本内的数据库
在 shell 脚本中,我们可以在 UNIX 上使用 sqlplus 连接到数据库。 我可以在 awk 脚本中执行相同的操作吗? 我需要访问 awk 脚本内的选择查询的输出。这可能吗?
In a shell script we can connect to a Database using sqlplus on unix.
can i perform the same thing inside an awk script?
i need to access the output of a select query inside an awk script.is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会执行查询并将其输出输入 awk:
就像任何其他命令一样:
I'd do the query and feed the output of it into awk:
Just like any other command:
只需为您的 SQL 数据库使用某种命令行客户端(如果可用)并将输出通过管道传输到
awk
。例如,使用
sqlite
(我不知道客户端 SQL*Plus 有什么):awk
无法做到这一点。这是 UNIX 工具哲学,您不是使用很少的工具来完成许多任务,而是使用许多小工具来完成一项任务并将它们连接在一起。Just use some sort of command line client for your SQL database (if available) and pipe the output to
awk
.E.g. with
sqlite
(I don't know what client SQL*Plus has):awk
can't do it. This is UNIX tools philosophy, instead of having few tools that do many tasks, you use many little tools that do one task and connect them together.