连接到 awk 脚本内的数据库

发布于 2024-08-07 12:12:24 字数 99 浏览 4 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回首观望 2024-08-14 12:12:24

我会执行查询并将其输出输入 awk:

sqlplus 'select onething from another' | awk '{ weave awk magic here }'

就像任何其他命令一样:

pax> ls -alF | awk '{print $9}'
    file1.txt
    file2.txt
    my_p0rn_dir/

I'd do the query and feed the output of it into awk:

sqlplus 'select onething from another' | awk '{ weave awk magic here }'

Just like any other command:

pax> ls -alF | awk '{print $9}'
    file1.txt
    file2.txt
    my_p0rn_dir/
若无相欠,怎会相见 2024-08-14 12:12:24

只需为您的 SQL 数据库使用某种命令行客户端(如果可用)并将输出通过管道传输到 awk

例如,使用 sqlite (我不知道客户端 SQL*Plus 有什么):

echo "select * from foo;" | sqlite3 file.db | awk ...

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):

echo "select * from foo;" | sqlite3 file.db | awk ...

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文