Jump to content

[SOLVED] call to StoredProcedure returning ORA-06550


Recommended Posts

Please tell me what the following means:-

 

Warning: ociexecute() [function.ociexecute]: OCIStmtExecute: ORA-06550: line 1, column 7: PLS-00905: object BIG.SPPACKAGE is invalid ORA-06550: line 1, column 7: PL/SQL: Statement ignored in C:\Program Files\Apache Group\Apache2\htdocs\Events\OracleGetClientTest.php on line 44

 

The code around line 44 looks like:-

  $SQL = "begin spPackage.spMemberDetails(:P_number, :P_recordset); end;";

 

 

$curs = OCINewCursor($conn);

  $stmt = OCIParse($conn, $SQL );

 

  if (!$stmt)

{

 

        trigger_error(sprintf("Cannot parse query for [%s] ", $number), E_USER_ERROR);

 

        die();

 

        }

OCIBindByName($stmt,":P_number",&$number,15);

OCIBindByName($stmt,":P_recordset",&$curs,10,OCI_B_CURSOR);

 

  $exec = OCIExecute($stmt);

 

and OCIExecute is Line 44.

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.