pro* c调用存储过程 linux,Pro*C调用存储过程返回的游标

给同事写个一个Pro*C调用存储过程返回的游标的小例子。

Microsoft Windows XP [版本 5.1.2600]

(C) 版权所有 1985-2001 Microsoft Corp.

C:\Documents and Settings\htaix>cd c:\

C:\>sqlplus test/test@remotedb

SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 2月 5 16:48:02 2013

Copyright (c) 1982, 2005, Oracle.  All rights reserved.

连接到:

Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production

With the Partitioning, OLAP and Data Mining options

SQL> SELECT * FROM T;

ID NAME

---------- ----------------------------------------

1 a

2 b

3 c

4 d

SQL> CREATE OR REPLACE PROCEDURE GETCURSOR(MYCURSOR OUT SYS_REFCURSOR)

2  AS

3  BEGIN

4     OPEN MYCURSOR FOR SELECT * FROM T;

5  END;

6

7  /

过程已创建。

SQL> SET SERVEROUT ON

SQL> declare

2     mycursor sys_refcursor;

3     v_row t%rowtype;

4  begin

5    GETCURSOR(mycursor);

6    loop

7       fetch mycursor into v_row;

8       exit when mycursor%notfound;

9       dbms_output.put_line('id='||v_row.id);

10    end loop;

11    close mycursor;

12  end;

13  /

id=1

id=2

id=3

id=4

PL/SQL 过程已成功完成。

SQL>

创建了一个返回游标类型的存储过程。

Pro*C代码如下:

#include #include #include exec sql include sqlca;

main()

{

exec sql begin declare section;

char *username="test/test@remotedb";

int id;

char name[20];

sql_cursor t_cursor;

exec sql end   declare section;

exec sql connect :username;

exec sql allocate :t_cursor;

EXEC SQL EXECUTE

BEGIN

GETCURSOR(:t_cursor);

END;

END-EXEC;

exec sql whenever not found do break;

while(1)

{

exec sql fetch :t_cursor into :id,:name;

printf("id: %d,name: %s\n",id,name);

}

exec sql close :t_cursor;

exec sql free :t_cursor;

exec sql commit work release;

}

编程成可执行文件,执行结果如下:

/home/cpicsrv/yansp > ./test

id: 1,name: a

id: 2,name: b

id: 3,name: c

id: 4,name: d

阅读(3287) | 评论(1) | 转发(0) |

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值