Top "H2" questions

H2 is a relational database management system written in Java.

Connect to H2 database using IntelliJ database client

My Grails app uses a h2 database in dev mode (the default behaviour for Grails apps). The DB connection settings …

grails intellij-idea h2
Which is better H2 or HSQLDB?

HSQLDB 2.0 is soon to be released. I wonder if it will outperform H2 since, as far as I know, most …

java database comparison hsqldb h2
Spring configuration for embedded H2 database for tests

What does your Spring configuration for integration tests look like using an embedded h2 datasource and, optionally, JUnit? My first …

unit-testing spring embedded-database h2
How to configure spring-boot to use file based H2 database

I have successfully created a spring boot application that uses the H2 embedded database in-memory. I would now like to …

spring-boot h2
java ClassNotFoundException for org.h2.Driver

I am trying to use H2 to connect to a database in Java (using Eclipse as the IDE). The sample …

java jdbc h2 classnotfoundexception
How to see all tables in my h2 database at localhost:8082?

I use JDBC and created h2 database called usaDB from sql script. Then I filled all tables with jdbc. The …

java h2
What is the default username and password for h2 when there's nothing explicit in JDBC?

From a program, I created a H2 database without specifying any user or password in the JDBC URL. Now I'm …

h2
Executing script file in h2 database

First of all I would like to say am new to h2 database. I need to execute a sql script …

h2 sql-scripts
H2 database string to timestamp

Insertion of timestamps in H2 database Hello, I have to insert data like '17-09-2012 18:47:52.69'. Function PARSEDATETIME cuts …

h2 milliseconds timestamp
Embedding the Java h2 database programmatically

At the moment we use HSQLDB as an embedded database, but we search for a database with less memory footprint …

java database embedding h2