I'm working with a mysql database that has an existing set of sql files to
set up the database tables. These tables exist already, but we reuse the
scripts often to set up environments for developers.
The problem is that some of the create table statements look like this:
CREATE TABLE FOO (
ID int not null auto_increment
...
) ENGINE=InnoDB *AUTO_INCREMENT=3 DEFAULT CHARSET=utf8*;
I want to use H2 as part of my unit testing, but it doesn't seem to support
the parts I've underlined.
Is there a known workaround for this? I really don't want to maintain 2
copies of the sql
Thanks.
--
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/groups/opt_out.