php语法调用hana存储过程

时间:2016-07-14 09:27:52

标签: php hana

调用存储过程时出现语法错误。我用的是:

 $sp="call'ZSECURITY'.'xxx.security.core.catalog.procedures/USER_AUTH_PSWD_RESET'('userid','password',?)";

$result = odbc_exec($conn,$sp);

1 个答案:

答案 0 :(得分:0)

我的第一个想法是你在SQL语句中使用了错误的引号。试试这个:

$sp='call "ZSECURITY"."xxx.security.core.catalog.procedures/USER_AUTH_PSWD_RESET"(\'userid\',\'password\',?)'; 
$result = odbc_exec($conn,$sp);