error in a stored procedure call

admin

Administrator
Staff member
Hi:

I've used this code to make a store procedure call:

$conn = ocilogon("user","pwd", "sid");
$connstring = "BEGIN test(:t_param); END;" ;
$stmt = ociparse($conn, $connstring );
ocibindbyname($stmt,"t_param",&$param,-1);
ociexecute($stmt);
ocifreestatement($stmt);
ocilogoff($conn);

And i get the following error message:

Warning: OCIStmtExecute: ORA-06550: line 1, column 21: PLS-00553: character set name is not recognized ORA-06550: line 0, column 0: PL/SQL: Compilation unit analysis terminated in classes/class.Usuario_Cubacel_Online.php on line 126

Does anybody could help me , please ?
 
Back
Top