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

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

 java怎样将一组对象传入Oracle存储过程。须要注意的是jar包是有要求的,假设使用不当会导致仅仅有数字能传过去,字符串传只是去。假设是Oracle11g则须要选用例如以下的jar包,F:\app\Administrator\product\11.2.0\dbhome_1\jlib\orai18n.jar、

D:\program\weblogic\oracle_common\modules\oracle.jdbc_11.2.0\ojdbc6.jar

样例例如以下:

CREATE OR REPLACE TYPE TEST_OBJECT AS OBJECT (  id number,  name varchar2(32));CREATE OR REPLACE TYPE TABLES_ARRAY AS VARRAY(100) OF TEST_OBJECT;drop table test purge;create table test(  id number,  name varchar2(32));create or replace procedure t_list_to_p(arr_t in tables_array) isbegin  for i in 1..arr_t.count loop      insert  into test values(arr_t(i).id,arr_t(i).name);  end loop;  commit;end t_list_to_p;

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;import oracle.sql.STRUCT;import oracle.sql.StructDescriptor;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);            StructDescriptor tDescriptor = StructDescriptor.createDescriptor("TEST_OBJECT", con);        	List
structs = new ArrayList
(); Object[] tObject = null ; //能够将系统中VO,DTO转化成Object对象,先创建struts for(int i = 0; i<10; i++){ tObject = new Object[2]; tObject[0] = i; tObject[1] = "name"+i; STRUCT tStruct = new STRUCT(tDescriptor, con, tObject); structs.add(tStruct); } ArrayDescriptor arrayDescriptor = ArrayDescriptor.createDescriptor("TABLES_ARRAY", con); ARRAY tArray = new ARRAY(arrayDescriptor, con, structs.toArray()); stmt = con.prepareCall("{call t_list_to_p(?

)}"); stmt.setArray(1, tArray); 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(); } }

转载于:https://www.cnblogs.com/brucemengbm/p/6740929.html

你可能感兴趣的文章
后台运行命令:&amp;和nohup command &amp; 以及关闭、查看后台任务
查看>>
[Source] Machine Learning Gathering/Surveys
查看>>
HTML <select> 标签
查看>>
类加载机制
查看>>
c# 读/写文件(各种格式)
查看>>
iOS中用UIWebView的loadHTMLString后图片和文字失调解决方法
查看>>
【校招面试 之 C/C++】第24题 C++ STL(六)之Map
查看>>
android基础知识杂记
查看>>
常见浏览器兼容性问题与解决方式
查看>>
Python使用subprocess的Popen要调用系统命令
查看>>
网络编程学习小结
查看>>
常见浏览器兼容性问题与解决方式
查看>>
redis.conf 配置详解
查看>>
thinkphp volist if标签 bug
查看>>
Struts2 Action
查看>>
Strut2------源码下载
查看>>
[LeetCode] 152. Maximum Product Subarray Java
查看>>
Jquery中each的三种遍历方法
查看>>
数据库
查看>>
洛谷 P1967 货车运输(克鲁斯卡尔重构树)
查看>>