Heim  >  Artikel  >  Backend-Entwicklung  >  php调用oracle存过过程出错

php调用oracle存过过程出错

WBOY
WBOYOriginal
2016-06-23 14:18:29979Durchsuche

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;/

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);

出现错误
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

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

回复讨论(解决方案)

你好,请问你解决了吗

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

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:PHP MVC初学者问题...Nächster Artikel:utf8转成gbk