stored procedure has 2 varchar2 as input and a number as an output
have a connection to oracle
$test="test1";
$pwd="pwd1";
$result;
$stmt = OCIParse($conn,"begin TEST1PROC('$test','$pwd',:result); end;");
ocibindbyname($stmt, "result", &$result, -1);
ociexecute($stmt);
OCIResult($stmt,$result);
get the error:
Warning: OCIStmtExecute: ORA-06550: line 1, column 32: PLS-00553: character set name is not recognized ORA-06550: line 0, column 0: PL/SQL: Compilation unit analysis terminated