Hey Everyone, I hope someone can give some insight into this bizarre issue
I have a iJetty WebApp on my android device. We have the ability to clear our H2 DB after the user shuts down their jetty server but the Dalvik vm is online. I get an exception after the following case: 1. Start server 2. login to system (This creates the H2 db if its not there, and where the connections are made) 3. stop the server (this issues a disconnect to all the connections to the DB) 4. delete the h2 DB from the app (This deletes the h2 db file) 5. start the app 6. login to system (This creates the H2 db if its not there, and where the connections are made) Things work fine when I do this twice. But when on the third time i get this exception: java.lang.ExceptionInInitializerError . . . Caused by: java.util.ConcurrentModificationException at java.util.ArrayList$ArrayListIterator.next(ArrayList.java:569) at java.sql.DriverManager.getDrivers(DriverManager.java:258) at org.apache.commons.dbcp.BasicDataSource.<clinit>(BasicDataSource.java:57) ... 41 more I also notice this thread is still around: Daemon Thread [<43> H2 Log Writer AppCache.H2](Running) Any Thoughts would be appreciated -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/h2-database. For more options, visit https://groups.google.com/groups/opt_out.
