On 2014-01-16 13:25, Alexey Kalugin wrote:
Is it possible to obtain the jar file from the latest SVN?
Not without downloading the source and compiling it yourself. But I just did this: (1) I downloaded the latest jar from http://www.h2database.com/automated/h2-latest.jar (2) I ran the H2 console from the command line java -cp h2-latest.jar org.h2.tools.Console (3) I connected to a DB called jdbc:h2:mem:test;MODE=DB2;DB_CLOSE_DELAY=-1 (4) I executed the command create table if not exists Driver ( ID int identity primary key, FirstName varchar, LastName varchar, BirthDate date ) (5) I executed the command select * from Driver with ur And it all worked. At this point in time I suspect that your problem is in Hibernate, not H2. -- 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.
