I noticed that with release 1.2.129 if I create a new db using h2
console, using this url: jdbc:h2:file:c:/eclipse-workspace/testdb,
it's created in the new page store format (.h2.db), but if I create
the db using this code:
Class.forName("org.h2.Driver");
Connection conn = DriverManager.getConnection("jdbc:h2:file:c:/eclipse-
workspace/testdb","sa", "");
the old format is used (3 files), so I'm forced to
use ;PAGE_STORE=TRUE
Is this a correct behaviour? it seems strange to me because with the
same url I create 2 different store types.Regards, Andrea -- 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.
