java怎樣將一個List傳入Oracle預存程序

來源:互聯網
上載者:User

標籤:catch   name   import   loop   track   imp   .sql   rac   des   

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



java怎樣將一個List傳入Oracle預存程序

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.