Top "H2" questions

H2 is a relational database management system written in Java.

H2 Console throwing a error webAllowOthers in H2 database

I am using heruko to deploy my application when i am trying to load my h2 console using heruko it …

java spring-boot spring-data spring-data-jpa h2
Syntax Error in SQL Statement with H2

I have an error while some sql statements in H2 database. Those sql statements come from a Hibernate SchemaExport : Here …

hibernate jdbc h2 schemaexport
Error using Hibernate with H2 in memory database

I'm working with Hibernate. How can I configure my persistence.xml to have an H2 in-memory database? My persistence.xml …

java hibernate jpa h2
Spring Boot + IntelliJ + Embedded Database = Headache

Either I'm missing some core concept buried deep within some documentation (Spring, Spring Boot, H2, HSQLDB, Derby, IntelliJ) or I've …

spring intellij-idea spring-boot h2
Does Spring embedded database support different SQL dialects?

H2 has a range of compatibility modes for various other databases such as MS SQL Server, MySQL, Oracle, etc that …

java spring h2 embedded-database
h2 in-memory tables, remote connection

I am having problems with creating an in memory table, using H2 database, and accessing it outside of the JVM …

database jdbc embedded-database h2
H2: how to set default schema and database?

I am using Liquibase for my database updates and testing it against H2. I am using Spring to configure the …

database spring h2 liquibase
hibernate h2 embeddable list expected "identifier"

I'm trying to associate a list of function (whom Embeddable) within my Employee Entity and H2 seems unhappy with this …

java hibernate h2 embeddable
SpringBoot - Testing with Flyway and H2 database

I'm coding acceptance tests with Cucumber, and I want to use a H2 database for the tests. The application-test.properties …

spring-boot testing h2 flyway acceptance
In H2 Database, add index while table creation in single query

I am trying to create table having different indexes with single query but H2 gives Error for example: create table …

sql indexing h2