> jdbc:h2:~/test;schema=a > jdbc:h2:~/test;schema=b > jdbc:h2:~/test;schema=c > > Initially, you need to create the schemas using CREATE SCHEMA A and so > on. I guess that doesn't matter, because you anyway you need to create > the tables. If it does matter, you could use an init script, > seehttp://h2database.com/html/features.html#execute_sql_on_connection
The tables are auto-created by a different configuration in a smart way (e.g. if only a column is missing, it will alter table and not drop), so the only thing that is missing for me is the schema auto- create. Is there any hook that could auto-create the schema if it does not exists? Thanks and regards, Istvan -- 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.
