sql >> Base de Datos >  >> RDS >> Oracle

No se puede resolver el error:java.sql.SQLException:ORA-01000:se excedió el número máximo de cursores abiertos

Si está intentando realizar la misma operación 1000 veces, le recomendaría re-using el mismo PreparedStatement o usando addBatch() y executeBatch() combinación

Si planea reutilizar su declaración preparada, esto es lo que puede hacer:

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
   }
 }
}