gpt4 book ai didi

java - 将 ArrayList 发送到 SP Oracle

转载 作者:行者123 更新时间:2023-12-02 02:35:30 27 4
gpt4 key购买 nike

我的 Java 代码中有一个字符串 ArrayList,我需要将此列表发送到 Oracle 中的 sp。我无法设置列表,因为 Array 与 ArrayList 不兼容。我如何发送此列表?

public static boolean ejecutarPackageSeteado(String procedimiento,ArrayList<String> lista) throws Exception{            
try{
cs=getCallableStatement("{call "+procedimiento+"}");
cs.setArray(1,lista);//THIS LINE SHOW ERROR
cs.execute();
}catch(Exception e){
System.out.println(e.getMessage());
throw e;
}finally{
cs.close();
CallableStatementConnection.close();
}
return true;
}

这是我的PrepareStatement

cs=getCallableStatement("{call "+procedimiento+"}");

//procedimiento is ="INSERTAR.INSERTAR_RUTFORZADA(?)"

private static CallableStatement getCallableStatement(String sql) throws Exception{
if(CallableStatementConnection==null || CallableStatementConnection.isClosed()){
CallableStatementConnection = getConnection();
}
return CallableStatementConnection.prepareCall(sql);
}

最佳答案

您需要从 java.util.ArrayListjava.sql.Array 进行一些调整

Array sqlArray = connection.createArrayOf("VARCHAR", lista.toArray(new String[0]));
cs.setArray(1,sqlArray );

关于java - 将 ArrayList<String> 发送到 SP Oracle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46427090/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com