PHP 调用 Oracle 存储过程出现 not all variables bound 原因

阅读更多

今天发现使用 PHP 调用 Oracle 存储过程总是出现这样的一个错误。

 

ORA-01008: not all variables bound

 

后来折腾了很久,发现是变量名写错了。

 

";
echo "errmsg is : $errmsg
"; oci_close($conn); ?>

参考资源:http://www.oracle.com/technetwork/cn/articles/fuecks-sps-082839-zhs.html

 

原文链接:http://woqilin.blogspot.com/2016/05/php-oracle-not-all-variables-bound.html

你可能感兴趣的:(php,oracle)