Top "H2" questions

H2 is a relational database management system written in Java.

H2 Console Cant see tables created by JAVA

I have downloaded the H2 console from http://www.h2database.com/html/download.html and I have configured the …

java hibernate jdbc h2
How to show content of local h2 database(web console)?

Recently I joined a new team and here guys use h2 for stub service. I was wondering whether I can …

java spring orm h2 h2db
problem with INIT=RUNSCRIPT and relative paths

I use maven conventions for source paths (src/main src/test) and i have my sql scripts in src/main/…

java hibernate maven-2 configuration h2
Spring Boot with Hibernate generating drop constraint errors on startup with H2 database

I am using spring-boot and have an H2 database configured like so (in the application.properties). spring.datasource.url=jdbc:…

java spring hibernate jpa h2
H2 database: NULL not allowed for column "ID" when inserting record using jdbcTemplate

I use hibernate's hbm2ddl to generate schema automatically. Here is my domain: @Entity public class Reader { @Id @GeneratedValue(strategy=…

hibernate h2
Create an in-memory database structure from an Oracle instance

I have an application where many "unit" tests use a real connection to an Oracle database during their execution. As …

java unit-testing hsqldb h2 in-memory-database
H2 Database multiple connections

I have the following issue: Two instances of an application on two different systems should share a small database. The …

h2
H2 database in memory mode cannot be accessed by Console

I am creating an in memory database in H2 database by the following code on servlet context startup void initDb() { …

embedded-database h2
JPA/Hibernate support for migration?

I'm currently working on a desktop application using JPA/Hibernate to persist data in a H2 database. I'm curious what …

java hibernate jpa h2
How to add the mode=mysql to embedded H2 DB in Spring Boot 1.4.1 for @DataJpaTest?

I have some problems with using a schema.sql file to create my sql schema when executing a junit test …

java mysql hibernate spring-boot h2