博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java怎样将一个List传入Oracle存储过程
阅读量:6252 次
发布时间:2019-06-22

本文共 1885 字,大约阅读时间需要 6 分钟。

 java怎样将一个List传入Oracle存储过程。样例例如以下:

数据库端建一个PL/SQL的数组。

CREATE OR REPLACE TYPE tables_array AS VARRAY(100) OF VARCHAR2(32) ;drop table test purge;create table test(  name varchar2(32));create or replace procedure t_list_to_p(arr_t in tables_array) isbegin  for i in arr_t.first .. arr_t.last loop    insert  into test values(arr_t(i));  end loop;  commit;end t_list_to_p;
java代码:

import java.sql.CallableStatement;import java.sql.Connection;import java.sql.DriverManager;import java.sql.SQLException;import java.util.ArrayList;import java.util.List;import oracle.sql.ARRAY;import oracle.sql.ArrayDescriptor;public class TestListToProcedure {    static final String driver_class  = "oracle.jdbc.driver.OracleDriver";    static final String connectionURL = "jdbc:oracle:thin:@10.150.15.150:1521:orcl";    static final String userID        = "test";    static final String userPassword  = "test";    public void runTest() {        Connection  con = null;        CallableStatement stmt = null ;        try {            Class.forName (driver_class).newInstance();            con = DriverManager.getConnection(connectionURL, userID, userPassword);            stmt = con.prepareCall("{call t_list_to_p(?

)}"); ArrayDescriptor descriptor = ArrayDescriptor.createDescriptor("TABLES_ARRAY",con); List list = new ArrayList(); list.add("张三"); list.add("李四"); list.add("王五"); ARRAY array = new ARRAY(descriptor,con,list.toArray()); stmt.setArray(1, array); stmt.execute(); } catch (SQLException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); }finally{ if(stmt != null){ try { stmt.close(); } catch (SQLException e) { e.printStackTrace(); } } if(con != null){ try { con.close(); } catch (SQLException e) { e.printStackTrace(); } } } } public static void main(String[] args) { TestListToProcedure testListToProcedure = new TestListToProcedure(); testListToProcedure.runTest(); } }

转载地址:http://lcysa.baihongyu.com/

你可能感兴趣的文章
后台管理UI皮肤的选择
查看>>
inline-block 左边固定,右边自适应
查看>>
ubuntu 环境变量PATH的修改
查看>>
动态代理模式
查看>>
进度条,随机数---demo笔记【原创】
查看>>
Android -- 自定义View小Demo,绘制钟表时间(一)
查看>>
Download Free Oracle Reports Building Guide eBook
查看>>
固定标题列、标题头table
查看>>
Geeks - Check whether a given graph is Bipartite or not 二分图检查
查看>>
使用Ant构建简单项目
查看>>
求两个有序数组的中位数(4. Median of Two Sorted Arrays)
查看>>
git锁和钩子以及图形化界面
查看>>
DataSnap Server 客户端调用 异常
查看>>
cesium之地图贴地量算工具效果篇
查看>>
C# winform DevExpress上传图片到数据库【转】
查看>>
指针和引用
查看>>
Review Board
查看>>
winform 程序中 调用wpf 窗体
查看>>
Chapter 24. Dynamic language support
查看>>
信息检索Reading List
查看>>