Tagged Questions
H2 is an open source SQL database engine written in Java. It can be embedded in Java applications or run in the client-server mode. H2 supports regular disk-based as well as in-memory databases.
14
votes
2answers
4k views
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 users prefer H2 than HSQLDB. I am interested in the MVCC support of HSQLDB 2.0. I have learned that ...
11
votes
3answers
2k views
Any real world experience with H2 database?
Has anybody out there got any real world experience with the H2 database? I'm interested in:
performance
stability
bugs
9
votes
3answers
9k views
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 as the data volume grows.
Derby / JavaDB is not an option at the moment because it stores ...
7
votes
6answers
4k views
Starting an H2 Database Server from Maven?
Suppose I want to create and use an H2 database for my integration tests.
Maven has a command to run tests: mvn test.
Is there a way to tell maven to start an H2 database server for the tests and ...
6
votes
4answers
2k views
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 you can imagine, these tests take too much time to be executed, as they need to ...
6
votes
3answers
3k views
H2 Database vs SQLite on Android
Because of the lack of Unicode support on the embedded SQLite database in Android
I am mostly interested in performance and stability of H2 Database vs Android SQLite
Are you guys using it?
Should I ...
5
votes
3answers
287 views
Running Jasper Reports against an in-memory h2 datasource?
I'm trying to run jasper reports against a live and reporting database, but any reports run against the live database throw exceptions about not finding the right tables (although the default PUBLIC ...
5
votes
2answers
1k views
How to connect to Play Framework in-memory database using JDBC?
I use the in-memory database that comes with Play Framework, when I have db=mem in the configuration file, for development.
How can I connect to this database using JDBC? and not the JPA that is the ...
5
votes
5answers
2k views
Frontends tool to manage H2 database
what's the best frontend tool to manage H2 database?
Create table, alter table, add coloumn ecc ecc..
Thanks.
5
votes
2answers
5k views
Spring configuration for embedded H2 database for tests
What does your Spring configuration for a datasource with embedded h2 database that you use for integration (JUnit-)tests look like? My first try with a SingleConnectionDataSource basically worked, ...
5
votes
4answers
1k views
How to write a null safe compare “<=>” in pure SQL?
In Mysql there is a compare operator that is a null safe: <=>. I use this in my Java program when creating prepared statements like this:
String routerAddress = getSomeValue();
String sql = ...
4
votes
2answers
170 views
Adding aggregate function to external H2 database (SOLVED)
Hello experts of the world :)
I'm trying to create an aggregate function in my H2 database using Java.
The function should return a custom median calculation from the given Double column.
This ...
4
votes
1answer
225 views
Play! not shutting down H2 correctly
I'm using Play to write a webapp which is deployed in Tomcat. Because the app won't be processing very much data I'm using the default H2 database with Hibernate. When I want to deploy a new version ...
4
votes
3answers
744 views
Access mem or fs database tables using H2 console
I'm trying to access my application's tables in Play! Framework, but I can't find it using the console.
For instance, I have two entity models: Address and Campus.
I can create objects and save ...
4
votes
2answers
2k views
Can I have H2 autocreate a schema in an in-memory database?
(I've already seen the H2 database In memory - Init schema via Spring/Hibernate question; it is not applicable here.)
I'd like to know if there's a setting in H2 that will allow me to auto-create a ...
4
votes
2answers
360 views
How to access CSV file within WAR using H2's CSVREAD() function/query?
I'm trying to read a CSV file from within a web application (Tomcat 5.5.x) and all I get is 'FileNotFoundExceptions's:
dbStatement.executeQuery("SELECT * FROM CSVREAD('csvfile.csv');");
I don't ...
4
votes
3answers
792 views
How reliable is h2 database?
When I ask this question, I see that the current version of H2 database was released on 07-01-2011 (very recently). That is very good & healthy. Will this pace be kept? event if the pace of new ...
4
votes
4answers
2k views
Timeout error trying to lock table in h2
I get the following error under a certain scenario
When a different thread is populating a lot of users via the bulk upload operation and I was trying to view the list of all users on a different web ...
4
votes
2answers
512 views
Unable to cascade delete a @OneToOne member
@Entity public class Organization {
@OneToOne(fetch = FetchType.EAGER)
@OnDelete(action = OnDeleteAction.CASCADE)
@Cascade(value = DELETE_ORPHAN)
private Days days;
}
I have the ...
4
votes
4answers
583 views
JPA/Hibernate support for migration?
Aloha,
I'm currently working on a desktop application using JPA/Hibernate to persist data in a H2 database. I'm curious what my options are if I need to make changes to the database schema in the ...
4
votes
2answers
2k views
How to create stored procedure using H2 database?
Has anyone tried to create stored procedures using the H2 database?
4
votes
2answers
1k views
inlcude H2 database to use netbeans GUI with it
is possible include H2 database in netbeans to use it with the GUI to create table ecc ecc? Like javadb integration i means..
4
votes
2answers
2k views
insert a BLOB via a sql script?
I have an H2 database (http://www.h2database.com) and I'd like to insert a file into a BLOB field via a plain simple sql script (to populate a test database for instance). I know how to do that via ...
4
votes
4answers
2k views
“Create table if not exists” - how to check the schema, too?
Is there a (more or less) standard way to check not only whether a table named mytable exists, but also whether its schema is similar to what it should be? I'm experimenting with H2 database, and
...
4
votes
5answers
2k views
How to find rows in one table that have no corresponding row in another table
I have a 1:1 relationship between two tables. I want to find all the rows in table A that don't have a corresponding row in table B. I use this query:
SELECT id
FROM tableA
WHERE id NOT IN ...
3
votes
1answer
177 views
How to configure Play! Framework to work with ScalaQuery and H2?
I already have some simple project with one migration script:
# --- !Ups
create table user (
name varchar(255) not null primary key,
password varchar(255) not null
);
insert into user ...
3
votes
2answers
316 views
Liquibase: Change a INT autoincrement column to BIGINT using modifyDataType refactoring with H2 database
I have a primary key column which is an INT column which I would like to change to a BIGINT. Our test and production environment uses MySQL, but for unit tests we use the embedded H2 database.
I have ...
3
votes
3answers
483 views
View content of H2 or HSQLDB in-memory database
Is there a way to browse the content of an H2 or an HSQLDB in-memory database for viewing? For example, during a debugging session with Hibernate in order to check when the flush is executed; or to ...
3
votes
4answers
148 views
How to find if a column name is a reserved keyword across various databases
We have a legacy schema file which has the following column names, would like to understand if any of them would cause an issue if we port our application to h2, mysql, postgres or oracle.
e.g how ...
3
votes
3answers
68 views
GIT thinks db has been updated after tests
I have an eclipse jpa project with some tests that use a dummy h2 database to verify the correct loading of data. No new data is presisted to the dummy db
Every time I run the tests the db is ...
3
votes
1answer
302 views
Where are my H2 database files?
I'm just evaluating the H2 database... I downloaded and unpacked the installation and connect to a database at jdbc:h2:file:/home/konrad/test. /home/konrad is my home dir, test does not exist (I ...
3
votes
2answers
863 views
Any idea on H2 (Oracle MODE) “Syntax error : SELECT NEXTVAL FROM[*] DUAL”?
I have the following error using H2 (v1.3.154) with Oracle mode :
<bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property ...
3
votes
3answers
1k views
H2 in memory database, what am I missing?
I've got a H2 database with URL "jdbc:h2:test". I create a table using CREATE TABLE PERSON (ID INT PRIMARY KEY, FIRSTNAME VARCHAR(64), LASTNAME VARCHAR(64));. I then select everything from this ...
3
votes
5answers
1k views
Start and setup in-memory DB using Spring
I'm writing a small demo application in Java using Spring, that needs to have access to a database. It should run on different machines and it would be far too much effort to setup a real database. ...
3
votes
1answer
1k views
How in H2DB get sql dump like in MySql?
I have some questions about H2DB. I have H2DB database which stores data in files, I have 3 files test.18.log.db, test.data.db, test.index.db. I want get sql dump file like when I use mysqldump. It's ...
3
votes
4answers
563 views
SQL query that gives distinct results that match multiple columns
Sorry, I couldn't provide a better title for my problem as I am quite new to SQL.
I am looking for a SQL query string that solves the below problem.
Let's assume the following table:
DOCUMENT_ID | ...
2
votes
1answer
36 views
H2 database console, how the setting -webAllowOthers works?
I'm starting H2 console from spring:
<spring:bean id="H2WebServer" class="org.h2.tools.Server"
scope="singleton" factory-method="createWebServer" init-method="start"
...
2
votes
1answer
62 views
Let H2 prefix columns
Maybe that's only possible with SQLITE but is there also a trick to let H2 prefix all the returned columns with table name of a given select * query?
I need to know which table provides which column.
...
2
votes
1answer
77 views
H2 database - CSVREAD - skip loading header line of the csv file into db
I am using H2 DB in my java application. I want to load a .csv file to the DB. This file contains column headers as the first line of the file. So while loading the file into the DB through CSVREAD ...
2
votes
1answer
43 views
H2 - wait for threads to write changes in the shutdownhook
I Have a shutdownhook, that is executed when the process is terminated. However the changes that the program makes to the h2 database are not persistent. Only if I let the shutdown thread wait some ...
2
votes
2answers
73 views
Play Framework: How do I change the sort order of my database?
I have a Play app with db=mem in my application.conf file, and I want to be able to set the database's collation to French, with strength set to primary. Any idea how to do this?
If I add
...
2
votes
2answers
190 views
Dropping H2 in memory DB between integeration tests in maven
I have the following scenario.
I have an Hibernate-Spring Project, which works on mySQL on production, and uses H2 in-memory DB for integration tests, which is created on-the-fly.
Currently, when I ...
2
votes
2answers
100 views
H2 database schema creation check
I have H2 database generated on the-fly using Hibernate & Spring for my test-cases.
I have few weird errors, and I would like to know exactly how the schema looks like in H2. how the tables ...
2
votes
1answer
230 views
Unit tests with in memory H2 db get terribly slow
We have a large set of tests running against an in memory database. Each test creates its schema.
So far we were running those tests against a HSQL DB, but since H2 is supposed to be faster we tried ...
2
votes
1answer
62 views
ORMLite + H2 error: “No database files have been found in directory…”
I am very new to working with databases in Java. I am running an eclipse project that implements ORMLite over H2.
The problem is that as long as I have just my test project my code works fine. That ...
2
votes
1answer
78 views
H2: open connection, update, close connection and now all my changes are gone?
I am opening a database connection to H2 with the following URL:
jdbc:h2:../webapps/h2_db/MyDB;MODE=MySQL
I go and create a table with a Statement. Then when I am done I close my connection. Then ...
2
votes
1answer
256 views
H2 database GUI Tool
I' trying to use H2 database in my application and i need to backup only a 2 table, I also need a way to import and export blob through a gui tool to make it easy and gui tool for doing this?
2
votes
1answer
130 views
Playframework evolutions files compatible with both postgres and h2
I've been developing a web site with the Play framework (scala) using H2 as a backend. Testing is nicely integrated, especially with the ability to run tests against an in-memory H2 db.
Now I'd like ...
2
votes
0answers
399 views
Spring Roo: JDBC driver not available for 'org.h2.Driver'
I'm running Eclipse Indigo on Ubuntu Linux, Spring Tools 2.7.1, Spring Roo 1.1.5. I'm reading Getting Started with Roo and when I try the DB reverse engineering I've the following error:
roo> ...
2
votes
2answers
181 views
User-friendly tool to edit databases in Eclipse
Is there any tool in Eclipse comparable with phpMyAdmin? The project is in Java and I want to use H2 database. I have installed DTP but it is not as much user-friendly as phpMyAdmin. I did not find ...