调用存储过程时出现语法错误。我用的是:
$sp="call'ZSECURITY'.'xxx.security.core.catalog.procedures/USER_AUTH_PSWD_RESET'('userid','password',?)";
$result = odbc_exec($conn,$sp);
答案 0 :(得分:0)
我的第一个想法是你在SQL语句中使用了错误的引号。试试这个:
$sp='call "ZSECURITY"."xxx.security.core.catalog.procedures/USER_AUTH_PSWD_RESET"(\'userid\',\'password\',?)';
$result = odbc_exec($conn,$sp);