作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 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/
我是一名优秀的程序员,十分优秀!