Unable to resolve error - java.sql.SQLException: ORA-01000: maximum open cursors exceeded
问题 I made a java method to add a row to a database. I am calling this method about 1000 plus times for testing purposes. I called the close() method on my prepared statement and i am still getting the oracle error whenever this method is called to insert a row. Error ORA-01000: maximum open cursors exceeded Source Code public void insertARow(ArrayList<String> row) { try { //Proper SQL statement here, checked by running on DB String insert = "INSERT INTO user.info(cola,colb) values(?,?)"; //Add a