Oracle
 sql >> Database >  >> RDS >> Oracle

Impossibile risolvere l'errore - java.sql.SQLException:ORA-01000:numero massimo di cursori aperti superato

Se stai tentando di eseguire la stessa operazione 1000 volte, ti consiglierei di re-using lo stesso PreparedStatement o utilizzando addBatch() e executeBatch() combinato.

Se hai intenzione di riutilizzare la tua PreparedStatement, ecco qualcosa che puoi fare:

public void insertARow(PreparedStatement ps, ArrayList<String> row){
 //your code
}

public void calledMethod(){
 String insert = "INSERT INTO user.info(cola,colb) values(?,?)";
 PreparedStatement ps = null;

 try{
   ps = con.prepareStatement(insert);
   /**
    * Here you make the call to insertARow passing it the preparedstatement that you
    * have created. This in your case will be called multiple times.
    */
   insertARow(ps, row);
 }finally{
   if(ps != null){
     //close ps
   }
 }
}