利用游标返回结果集的的例子(Oracle 存储过程)

2008-02-23 10:01:13来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折


在sqlplus中建立如下的内容:
1、程序包

SQL> create or replace package types
2 as
3 type cursorType is ref cursor;
4 end;
5 /

程序包已创建。

2、函数
SQL> create or replace function sp_ListEmp return types.cursortype
2 as
3 l_cursor types.cursorType;
4 begin
5 open l_cursor for select id, title from cf_news order by id;--表的名字
6 return l_cursor;
7 end;
8 /

函数已创建。

3、过程

SQL> create or replace procedure getemps( p_cursor in out types.cursorType )
2 as
3 begin
4 open p_cursor for select id, title from cf_news order by id;--表的名字
5 end;
6 /

过程已创建。

4、建立一个可执行的Java控制台程序

import java.sql.*;
import java.io.*;
import Oracle.JDBC.driver.*;

class GetValues
{
public static void main (String args [])
throws SQLException, ClassNotFoundException
{
String driver_class = "oracle.jdbc.driver.OracleDriver";
String connect_string = "jdbc:oracle:thin:@127.0.0.1:1521:database";

String query = "begin :1 := sp_listEmp; end;"; //此处调用前面建立的函数!
Connection conn;

Class.forName(driver_class);
conn = DriverManager.getConnection(connect_string, "scott", "tiger");

CallableStatement cstmt = conn.prepareCall(query);
cstmt.reGISterOutParameter(1,OracleTypes.CURSOR);
cstmt.execute();
ResultSet rset = (ResultSet)cstmt.getObject(1);

while (rset.next ())
System.out.println( rset.getString (1) );
cstmt.close();
}
}

上一篇: 简单的Oracle存储过程的创建方法(菜鸟级)
下一篇: 在Unix/Linux上令(java)JVM支持中文输出

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:在nanowar中引入AOP

下一篇:jad文件的错误代码,分享