gpt4 book ai didi

bash - catch a psql(PostgreSQL) command error in bash, that can be used generic, indifferent of the sql

转载 作者:行者123 更新时间:2023-11-29 14:14:57 25 4
gpt4 key购买 nike

我想在 bash 中捕获 PostgreSQL 错误。

例如:

function create_database:
sudo -u postgres psql -c "CREATE DATABASE $1 WITH OWNER $2;"

我想要一些可以捕获任何类型的 postgres 错误(不仅是针对创建错误)并且 echo 错误

同样在错误的情况下返回1

如果我使用: $RESULT=$(sudo -u postgres psql -c "CREATE DATABASE $1 WITH OWNER $2;")

我从 psql 得到了答案,但它是特定于操作的,所以我必须为每个 SQL 命令进行字符串匹配。

最佳答案

查看语句是否成功非常简单:只需检查返回码即可。

$ sudo -u postgres psql -c 'melect 32'
ERROR: syntax error at or near "melect"
LINE 1: melect 32
^
$ echo $?
1

$ sudo -u postgres psql -c 'DROP TABLE not_exists'
ERROR: table "not_exists" does not exist
$ echo $?
1

$ sudo -u postgres psql -c 'SELECT 42'
?column?
----------
42
(1 row)

$ echo $?
0

所以你的代码可以做这样的事情:

sudo -u postgres psql -c "..." >/tmp/result 2>&1
if [ $? -ne 0 ]; then
echo /tmp/result >>logfile
rm -f /tmp/result
exit 1
else
rm -f /tmp/result
fi

关于bash - catch a psql(PostgreSQL) command error in bash, that can be used generic, indifferent of the sql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52326395/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com