Hi, Could you use the profiling tool to find out what is taking so long? To use it:
org.h2.util.Profiler prof = new org.h2.util.Profiler(); prof.interval = 1; prof.startCollecting(); // ... your code ... // System.out.println(prof.getTop(10)); I have some guesses (maybe you don't use prepared statements) but it's hard to say without more information. See also http://h2database.com/html/performance.html#application_profiling Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
