Hi, Sorry for the delay.
> in memory H2 Database I guess the problem is that the database is dropped (by default) when the last connection is closed. There are multiple ways to solve this: - 1) use a persistent database - 2) append ;DB_CLOSE_DELAY=1 to the database URL - 3) keep a 'sentinel' connection I would try using a persistent database first (jdbc:h2:~/temp/data or so). If this is not the problem, could you append ;TRACE_LEVEL_FILE=3 to the database URL and check in the .trace.db file what SQL statements are executed, and what the result is? 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.
