stockton Posted May 18, 2007 Share Posted May 18, 2007 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(_number, _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,"_number",&$number,15); OCIBindByName($stmt,"_recordset",&$curs,10,OCI_B_CURSOR); $exec = OCIExecute($stmt); and OCIExecute is Line 44. Link to comment https://forums.phpfreaks.com/topic/51970-solved-call-to-storedprocedure-returning-ora-06550/ Share on other sites More sharing options...
stockton Posted May 20, 2007 Author Share Posted May 20, 2007 Found it and rectified my fault. Link to comment https://forums.phpfreaks.com/topic/51970-solved-call-to-storedprocedure-returning-ora-06550/#findComment-257434 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.