如何在PHP中调用此存储过程?

时间:2018-09-11 14:26:34

标签: php sql oracle laravel plsql

我需要调用一个Oracle存储过程并检索其输出变量,但是我不确定如何从PHP执行此操作。我也在使用Laravel框架。

这是我到目前为止所拥有的。

$db = DB::connection('oracle');
$stmt = $db->getPdo()->prepare("EXEC jgreen.person_match(p_first_name => 'Bob'
    , p_last_name => 'Mitchell'
    , p_middle_name => ''
    , p_birth_date => to_date('1982-02-09', 'YYYY-MM-DD')
    , p_gender => null
    , p_email => 'test@gmail.com'
    , p_phone => null
    , p_ssn_last_4 => null
    , p_id_out => ?
    , p_suspend_out => ?
    , p_status_out => ?
    , p_message_out => ?)");
$stmt->bindParam(1, $id);
$stmt->bindParam(2, $suspend);
$stmt->bindParam(3, $status);
$stmt->bindParam(4, $message);

$stmt->execute();

echo $status . ' ' . $message . ' ' . $pidm . ' ' . $suspend;

当前我正在获得

  

oci_bind_by_name():ORA-01036:非法的变量名称/编号

,但我什至不确定我是否可以正确建立查询。

2 个答案:

答案 0 :(得分:1)

尝试一下

$db = DB::connection('oracle');
$stmt = $db->getPdo()->prepare("EXEC jgreen.person_match(p_first_name => :first_name
    , p_last_name => :last_name
    , p_middle_name => :middle_name
    , p_birth_date => to_date(:birth_date, 'YYYY-MM-DD')
    , p_gender => :gender
    , p_email => :email
    , p_phone => :phone
    , p_ssn_last_4 => :ssn
    , p_id_out => :id_out
    , p_suspend_out => :suspend_out
    , p_status_out => :status_out
    , p_message_out => :message_out)");
$stmt->bindValue(':first_name', 'Bob');
$stmt->bindValue(':last_name', 'Mitchell');
$stmt->bindValue(':middle_name', '');
$stmt->bindValue(':birth_date', '1982-02-09');
$stmt->bindValue(':gender', null);
$stmt->bindValue(':email','test@gmail.com');
$stmt->bindValue(':ssn', null);
$stmt->bindParam(':id_out', $id);
$stmt->bindParam(':suspend_out', $suspend);
$stmt->bindParam(':status_out', $status);
$stmt->bindParam(':message_out', $message);

$stmt->execute();

echo $status . ' ' . $message . ' ' . $pidm . ' ' . $suspend;

答案 1 :(得分:-1)

似乎您正在定义一个看起来像PHP的数组以传递参数,但是我可以肯定地说这在Oracle中无效。而是将存储过程作为一系列参数而不是数组来调用:

$stmt = $db->getPdo()->prepare("EXEC jgreen.person_match(
  'Bob',
  'Mitchell',
  '',
  to_date('1982-02-09', 'YYYY-MM-DD'),
  null,
  'test@gmail.com',
  null,
  null,
  ?,
  ?,
  ?,
  ?
)");