Hi, > Isn't there a fundamental difference though? hsqldb in memory mode is > still persistent, something which is not possible with h2, is it?
It is possible. Both H2 and HSQLDB support 'in-memory' databases (jdbc:..:mem:) that are not persistent. Both H2 and HSQLDB also support and 'in-memory' tables in regular databases that are persistent (CREATE MEMORY TABLE). For HSQLDB, 'in-memory tables' are the default, for H2 not. > jar size You can compile H2 without debug info, see http://www.h2database.com/html/build.html#build_targets - I think you will get about the same size as HSQLDB (maybe a bit bigger). 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 -~----------~----~----~----~------~----~------~--~---
