Jump to content

Executing a stored procedure with PHP


mrsquash

Recommended Posts

Hello all,

 

I am having some difficulty when trying to call an INFORMIX stored procedure with PHP.

 

I have verified that the if() condition is true and all of the parameters I am passing are valid. However, when I run the following:

 

Connection


if (!$connect_id = ifx_connect("$database@$host", $user, $pass)) { // THE ACTUAL CONNECTION
   echo "Unable to connect to Informix Database\n"; // DISPLAY IF CONNECTION FAILS
   exit();
}

 

Calling the procedure


if ($num_rows > 0 && $barcode_id == "") {
echo "The query found ".$num_rows." row(s)";
$call_procedure = ifx_prepare("CALL informix.updt_brcd_id_req($case, $event_date, $event_sequence, $event_code)", $connect_id);
$call_result = ifx_do($connect_id, $call_procedure);
} 

 

I get these Errors:

PHP Warning: ifx_prepare() [function.ifx-prepare]: Prepare fails (E [sqlSTATE=42 000 SQLCODE=-201])

PHP Warning: Wrong parameter count for ifx_do()

 

I have looked all over the web but i cannot find a solution.

 

ny help is appreciated.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.