Tagged Questions
HSQLDB (HyperSQL Database) is a relational database management system. It is written in Java.
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 ...
12
votes
3answers
3k views
Experience using Derby or HSQL in production mode
Anyone ever tried to use Derby or HSQLDB in a production environment? Any good, bad or ugly experiences?
11
votes
3answers
4k views
SQLite vs HSQLDB
What are the main differences between SQLite and HSQLDB? There are lots of applications using both of them, but I don't really see any major difference.
10
votes
13answers
31k views
Cause of No suitable driver found for
I'm trying to unit test (JUnit) a DAO i've created. I'm using Spring as my framework, my DAO (JdbcPackageDAO) extends SimpleJdbcDaoSupport. The testing class (JdbcPackageDAOTest) extends ...
8
votes
6answers
776 views
Am I crazy? Switching an established product from HSQLDB to Apache Derby
I have an established software product that uses HSQLDB as its internal settings database. Customer projects are stored in this database. Over the years, HSQLDB has served us reasonably well, but it ...
8
votes
3answers
5k views
maven repository location for hsqldb 2.0
http://hsqldb.org/ - where is the maven repository for the latest version 2.0.0 bits
8
votes
6answers
6k views
How to see all the tables in an HSQLDB database?
I usually use SQLDeveloper to browse the database, but I couldn't make it work with hsqldb and I don't know which tables are already created...
I guess it's a vendor specific question, and not plain ...
8
votes
11answers
2k views
Storing arrays in databases
What is the most efficient way to store large arrays (10000x100) in a database, say, hsqldb? I need to do this for a certain math program that I'm writing in java. Please help.
The whole array will be ...
7
votes
3answers
2k views
HSQLDB and Hibernate/JPA - not persisting to disk?
Something of an novice with HSQL and Hibernate...
em.getTransaction().begin();
for (Activity theActivity : activities) {
em.persist(theActivity);
}
em.getTransaction().commit();
em.close();
...
6
votes
1answer
170 views
Huge performance difference when using group by vs distinct
I am performing some tests on a HSQLDB server with a table containing 500 000 entries. The table has no indices. There are 5000 distinct business keys. I need a list of them. Naturally I started with ...
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
4answers
10k views
Spring/Hibernate/Junit example of testing DAO against HSQLDB
I'm working on trying to implement a JUnit test to check the functionality of a DAO. (The DAO will create/read a basic object/table relationship).
The trouble I'm having is the persistence of the ...
5
votes
2answers
5k views
How do I test with DBUnit with plain JDBC and HSQLDB without facing a NoSuchTableException?
I am trying to use DBUnit with plain JDBC and HSQLDB, and can't quite get it to work -- even though I've used DBUnit with Hibernate earlier with great success. Here's the code:
import ...
4
votes
2answers
310 views
Startup script to create a schema in HSQLDB
I am attempting to use an in memory database to mock out a teradata database. I need to create a schema before the tables are built, however, it is giving me fits.
I am using Spring and have lots ...
4
votes
1answer
482 views
Unit test MyBatis with HSQL instead of Oracle
I would like to unit test my MyBatis persistence layer using an HSQL in-memory database. The real application uses an Oracle database. This worked fine unitl we started adding auto incremented numbers ...
4
votes
2answers
452 views
Hibernate: use backticks for MySQL but not for HSQL
A project I work on (which uses Java, Spring, Hibernate) recently changed from Oracle to MySQL. There are a few cases where some of the properties in the code are reserved words in MySQL, such as ...
4
votes
1answer
371 views
HSQLDB is eating all my memory
I'm using a HSQLDB for an application that stores research data and there is quite a lot of data. HSQLDB insists on always loading the tables into memory. I've tried fixing this by setting ...
4
votes
4answers
591 views
Using HSQLDB in production environments
I want to use HSQLDB in a production environment for stroring some data in memory and for data export using files. Does anybody have experience with using hsqldb in production environments? Is hsqldb ...
4
votes
1answer
4k views
“correct” way to select next sequence value in HSQLDB 2.0.0-rc8
suppose i have a sequence, called TEST_SEQ
what would be the correct way of selecting its next value ?
this does not work:
select next value for TEST_SEQ
probably because it expects a "FROM" clause.
...
4
votes
1answer
2k views
SimpleJdbcTestUtils.executeScript and multilines script
I want to load SQL script files for my unit tests. As I am using Spring 2.5.2, I decided to use the SimpleJdbcTestUtils.executeScript() method to load my script file, using the following code:
...
4
votes
4answers
4k views
Running a script to create tables with HSQLDB
I use hsqldb to run my unit tests that need a database access.
For the moment, when I want to create a table for a specific test, I have the following code:
private void createTable() {
...
4
votes
3answers
3k views
Using @Table with schema name in Hibernate 3.3.1ga and HSQLDB
How can I make this work in unit tests using Hibernate 3.3.1ga and HSQLDB:
@Entity
@Table(name="CATEGORY", schema="TEST")
public static class Category { ... }
The problem is that Hibernate expects ...
4
votes
5answers
3k views
How to tune performance of hsqldb/hibernate app
I have an open source Java application that uses Hibernate and HSQLDB for persistence. In all my toy tests, things run fast and everything is good. I have a client who has been running the software ...
4
votes
2answers
2k views
Using HSQL for .NET developement and related questions of process
My team uses a shared instance of Oracle for development using C#, NHibernate and ASP.NET, and we occasionally step on each others toes when making data or schema changes holding up everyone.
On ...
3
votes
3answers
479 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
1answer
56 views
Is there a Ruby implementation of HSqlDB?
Is there such thing?
Actually, it doesnt need to be specifically HSqlDB, I just want something similar.
The main feature I need is the capability to create tables based on DSV text files, like you ...
3
votes
3answers
275 views
Viewing a grails schema while it runs in memory?
I want to view a grails schema for the default hsqldb in-memory database, but when I connect to the in-memory databse with SquirrelSQL or DbVisualizer as userid: sa, password: (nothing), I only see ...
3
votes
2answers
802 views
TEXT field that is compatable in mysql and hsqldb
I have an application that uses a mysql database but I would like to run the unit tests for the application in a hsqldb in-memory database. The problem is that some of my persistable model objects ...
3
votes
2answers
97 views
Polymorphic Lists and relational database
I've got an issue modelling a database to store some Java Objects (classical problem of mapping objects to a relational database). A example beeing far better than a long description, here's the ...
3
votes
2answers
380 views
JPA/HSQLDB is still eating all my memory
I'm working on a program that parses data from a file and stores it into a HSQLDB database. As the parser encounters data it creates entities which are mapped to the database using JPA/Hibernate. My ...
3
votes
3answers
1k views
How to load mysql dump to hsqldb database?
I have a sql file that creates a database in mysql:
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET ...
3
votes
1answer
2k views
Using HSQL in-memory database as JPA datasource
I have an in-memory data source:
java.sql.Connection c = DriverManager.getConnection("jdbc:hsqldb:mem:testdb", "sa", "");
emf = Persistence.createEntityManagerFactory("manager");
But ...
3
votes
3answers
265 views
HSQLDB cryptic exception message: “feature not supported”
I have JDBC code which inserts into a database table by executing a PreparedStatement. When I run the code on an in-memory HSQLDB database (as part of a JUnit test) I get a ...
3
votes
1answer
1k views
Hibernate @generatedvalue for HSQLDB
I have the following definition for an id field in an entity that is mapped to a table in HSQLDB.
...
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(name = "ID")
private Integer id;
...
...
3
votes
5answers
416 views
How to test sql scripts are standard sql in junit tests?
Is there any way to test that SQL scripts contain standard SQL with java/junit tests?
Currently we have sql scripts for creating a database etc. in a Postgres db, but when using hsqldb everything ...
3
votes
2answers
591 views
JPA - transactions not being commited
i'm working on a project in which i use JPA, Hibernate and all this stuff for the first time and i ran into problem with transactions not being commited. I use class User which looks like this:
...
3
votes
3answers
2k views
starting and stopping hsqldb from unit tests
I'm trying to create integration tests using hsqldb in an in memory mode. At the moment, I have to start the hsqldb server from the command line before running the unit tests. I would like to be able ...
3
votes
1answer
379 views
HSQLDB and in-memory files
Is it possible to setup HSQLDB in a way, so that the files with the db information are written into memory instead of using actual files? I want to use hsqldb to export some data structures together ...
3
votes
3answers
1k views
SQL tables using VARCHAR with UTF8 (with respect to multi byte character length)
Like in Oracle VARCHAR( 60 CHAR ) I would like to specify a varchar field with variable length depending on the inserted characters.
for example:
create table X (text varchar(3))
insert into X ...
3
votes
2answers
2k views
Inspect in memory hsqldb while debugging
We're using hdsqldb in memory to run junit tests which operate against a database. The db is setup before running each test via a spring configuration. All works fine.
Now when a tests fails it can be ...
3
votes
3answers
2k views
SQL - Add up all row-values of one column in a singletable
I've got a question regarding a SQL-select-query:
The table contains several columns, one of which is an Integer-column called "size" - the task I'm trying to perform is query the table for the sum of ...
3
votes
4answers
449 views
Conditional insert as a single database transaction in HSQLDB 1.8?
I'm using a particular database table like a "Set" data structure, i.e., you can attempt to insert the same row several times, but it will only contain one instance. The primary key is a natural key. ...
3
votes
4answers
458 views
is there a standard way to define a JDBC Datasource for J2EE containers?
I know that for JBoss you need a [name]-ds.xml file in the /deploy subdirectory of the appropriate instance.
i dont have any experience with other J2EE containers, but im trying to stick to standards ...
3
votes
1answer
2k views
How to use Oracle SQLdeveloper with HSQL / Hypersonic DB's JDBC driver
I'd like to use Oracle's SQLdeveloper to visualize my HSQLDB tables.
An instruction on how to use it with MySQL can be found on http://blogs.techrepublic.com.com/programming-and-development/?p=564 ...
3
votes
2answers
809 views
Ruby approach to data access available in IronRuby
Coming from the Ruby community and approching IronRuby for desktop application development, I have little interest in using a .NET based ORM such as Linq. I want to use the ruby-way of data access ...
3
votes
5answers
3k views
How to do “select current_timestamp” in hsqldb?
Oracle:
select systimestamp from dual
MySQL:
select current_timestamp
SQL Server:
select current_timestamp
PostgreSQL:
select current_timestamp
The question is, how can I get the current ...
3
votes
6answers
3k views
Auto incrementing ID value
I have an HSQLDB database with a generated ID and I want the auto-incrementing values to always be above 100,000. Is this possible with HSQLDB? Is this possible with any database?
2
votes
2answers
68 views
one-to-many without foreign key in hibernate
I have 2 classes Meal and Day.
One Day can have several Meals and one Meal can be served on several Days.
I store a Day object with all the meals from a day.
And a Meal object with no attribute of the ...
2
votes
2answers
70 views
Speedup LocalSessionFactoryBean dropDatabaseSchema, createDatabaseSchema
I am wondering how I can speedup my unit tests. I am using JUnit and before each test I am dropping the database schema and then recreating it. Since my schema is somewhat large, this can take quite ...
2
votes
4answers
54 views
Need to perform ORDER by Twice
I want to sort according to date first and then if date is similar then according to id..How to do that in Informix/HSQL query?