Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Não foi possível resolver o erro - java.sql.SQLException:ORA-01000:cursores abertos máximos excedidos


Se você está tentando realizar a mesma operação 1000 vezes, eu aconselharia re-using o mesmo PreparedStatement ou usando addBatch() e executeBatch() combinação

Se você planeja reutilizar seu PreparedStatement, aqui está algo que você pode fazer:
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
   }
 }
}