有没有办法在linux上使用update contact set email_address='foo@bar.com';
(firebird)执行isql
?
我不想使用-i
开关来指定sql脚本文件。我不能使用交互模式,因为我将从php脚本运行sql命令。
答案 0 :(得分:3)
在标准输入上输入命令时,大多数敏感的SQL shell都会做正确的事情,所以你应该能够echo
将你的SQL isql
转换为echo "update contact set email_address='foo@bar.com';" | /path/to/isql --your-favorite-switches
:
{{1}}