如何将List从java传递到Oracle过程



我想将List从java发送到Oracle过程。例如,有一所学校,学校有一份学生名单。此外,学生们还有一份讲座清单。我创建了一个讲座列表,以及具有讲座列表的学生的列表,学校有学生名单。

讲座。

ArrayList<String> lecture1 = new ArrayList<String>();
    lecture1.add("Mat");
    lecture1.add("physics");
    ArrayList<String> lecture2 = new ArrayList<String>();
    lecture2.add("English");
    lecture2.add("Spanish");
    ArrayList<String> lecture3 = new ArrayList<String>();
    lecture3.add("Germany");
    lecture3.add("French");

讲座列表。

ArrayList<ArrayList<String>> lectureList1 = new ArrayList<ArrayList<String>>();
    lectureList1.add(lecture1);
    lectureList1.add(lecture3);
    ArrayList<ArrayList<String>> lectureList2 = new ArrayList<ArrayList<String>>();
    lectureList2.add(lecture2);
    lectureList2.add(lecture3);

还有上课的学生名单。

    ArrayList<ArrayList<String>> StudentList = new ArrayList<ArrayList<String>>();
    StudentList.addAll(lectureList2);
    StudentList.addAll(lectureList2);
ArrayList<ArrayList<String>> StudentList2 = new ArrayList<ArrayList<String>>();
    StudentList2.addAll(lectureList1);
    StudentList2.addAll(lectureList2);

学校

    ArrayList<ArrayList<ArrayList<String>>> school = new ArrayList<ArrayList<ArrayList<String>>>();
    school.add(StudentList2);
    school.add(StudentList);

我想将"学校"发送到oracle程序。但是我无法直接发送列表。Oracle库允许发送数组,但我要发送列表。

我该怎么做这个手术?你能帮我吗?

谢谢。

将列表转换为多维数组,然后可以执行以下操作:

Oracle设置:

CREATE TYPE stringlist AS TABLE OF VARCHAR2(100);
/
CREATE TYPE stringlist_list AS TABLE OF stringlist;
/
CREATE TYPE stringlist_list_list AS TABLE OF stringlist_list;
/
CREATE PROCEDURE load_list (
  in_list IN stringlist_list_list
)
AS
BEGIN
  NULL; -- Do something with the list
END;
/

Java:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.CallableStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import oracle.jdbc.OracleCallableStatement;
import oracle.sql.ARRAY;
import oracle.sql.ArrayDescriptor;
public class TestDatabase2 {
  public static void main(String args[]){
    try{
      Class.forName("oracle.jdbc.OracleDriver");
      Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","username","password");
      // Convert your lists to arrays using #toArray( T[] )
      String[] l1 = { "Math", "Physics" };
      String[] l2 = { "English", "Spanish" };
      String[] l3 = { "French", "German" };
      ArrayDescriptor des = ArrayDescriptor.createDescriptor("STRINGLIST_LIST_LIST", con);
      ARRAY school = new ARRAY( des, con, newString[][][]{
        new String[][]{ l1, l3 },
        new String[][]{ l2, l3 }
      } );
      CallableStatement st = con.prepareCall("{ call add_school( :school )}");
      // Passing an array to the procedure - 
      ((OracleCallableStatement) st).setARRAYAtName( "school", school );
      st.execute();
    } catch(ClassNotFoundException | SQLException e) {
      System.out.println(e);
    }
  }
}

最新更新