php调用oracle存过过程出错

WBOY
Release: 2016-06-23 14:18:29
Original
981 people have browsed it

php oracle 存储

oracel存储过程:
create or replace package AA_TEST is  -- Author  : ADMINISTRATOR  -- Created : 2012-5-21 12:30:24  -- Purpose :   -- Public type declarations  type myCursor is ref cursor;  procedure getSysdate(in_byzd1 in string,                       in_byzd2 in string,                       in_byzd3 in string,                       out_flag out string,                       out_msg  out string,                       o_cursor out myCursor);end AA_TEST;/create or replace package body AA_TEST is  procedure getSysdate(in_byzd1 in 	,                       in_byzd2 in string,                       in_byzd3 in string,                       out_flag out string,                       out_msg  out string,                       o_cursor out myCursor) is  begin    out_flag := '1';    out_msg :='执行成功!';    open o_cursor for      select sysdate,in_byzd1,in_byzd2,in_byzd3 from dual;  end;end AA_TEST;/
Copy after login

php代码
$sql_sp = "begin HTS.AA_TEST.getSysdate(:in_byzd1,:in_byzd2,:in_byzd3,:out_flag,:out_msg,:o_cursor); end;"; $stmt = oci_parse($conn, $sql_sp);oci_bind_by_name($stmt,':in_byzd1',$in_byzd1);oci_bind_by_name($stmt,':in_byzd2',$in_byzd2);oci_bind_by_name($stmt,':in_byzd3',$in_byzd3);oci_bind_by_name($stmt,':out_flag',$out_flag);oci_bind_by_name($stmt,':out_msg',$out_msg);oci_bind_by_name($stmt,':o_cursor',$o_cursor);oci_execute($stmt);$result=oci_fetch_assoc($stmt);print_r($result);
Copy after login

出现错误
Warning: oci_execute(): ORA-06550: 第 1 行, 第 7 列: PLS-00306: 调用 'GETSYSDATE' 时参数个数或类型错误 ORA-06550: 第 1 行, 第 7 列: PL/SQL: Statement ignored in C:\xampp\htdocs\ceshi\index.php on line 15
Copy after login

刚接触php链接oracle这块!求大神快乐指教

回复讨论(解决方案)

你好,请问你解决了吗

我也出现了一样问题,可以说出来你是怎么解决的吗?非常感谢!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template