HSQLDB (HyperSQL Database) is a relational database management system. It is written in Java.

learn more… | top users | synonyms

1
vote
2answers
18 views

How to have Hibernate create tables on startup?

I am using Hibernate with HSQLDB and I have noticed that when the application starts up, no tables get created in HSQLDB. It's not until the first select or the first insert that all the tables get ...
1
vote
1answer
44 views

Escape for comments in SQL files with liquibase

I am working with liquibase and a hsqldb database. I have a .sql file with 'insert' instructions for filling the database at the bootstrap, but if a string contains two minus signs close to each ...
0
votes
1answer
16 views

Changing blob size on HSQLDB with spring datasource

I am configuring HSQLDB through Spring and C3P0, this creates the database for me if it doesn't exist. <bean id="DataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" ...
0
votes
1answer
20 views

How to create active object 'IN' condition query

my current query is as below and it works fine for single user: 1 ao.find(da.class, Query.select().where("user=?",user) Now, i want to change this query to fetch multi users data as below , but it ...
0
votes
1answer
67 views

JPA timestamp comparison not working

I have a persistent object with two Date fields, like this @Temporal(TemporalType.TIMESTAMP) private Date generated; @Temporal(TemporalType.TIMESTAMP) private Date expirationTime; On object ...
1
vote
1answer
23 views

hsql from webapp springmvc jpa hibernate

I have hsql server which using its swing manager I can retrieve data fine. jdbc:hsqldb:hsql://localhost:1234/securityweb I have DAO using JPA and when run with its main method as standalone it can ...
0
votes
0answers
27 views

Hibernate Database Generation Error in Spring

I'm having an error when I'm creating my in-memory database. When I start up my program on my Tomcat Server, it seems to run fine, until I try and insert into the database. My Tomcat log reveals the ...
0
votes
1answer
19 views

HSQLDB table not found using script to create table and insert data

I am using the GUI (hsqldb.jar) in HSQLDB 2.2.9 to create a DB. I have all the SQL commands in a separate text file. So to create the DB, I just copy the text and paste into the HSQLDB editor and hit ...
0
votes
0answers
19 views

Getting ConnectException intermittently from HSQLDB

We have a setup of 2 tomcats running in distributed mode which connect to 2 HSQLDB running in HA mode on both the nodes. The Tomcat Logs are showing ConnectExceptions at certain intervals. An ...
0
votes
1answer
13 views

Howto setup HSQLDB schema for Quartz scheduler

I'm writing a "simple" scheduler application which uses the great Quartz Scheduling framework. Quartz works with most database systems (MySQL, Oracle, HSQLDB, ...), which just need to be specified ...
0
votes
1answer
29 views

Compound primary key with autoincrement part

I'm using HSQLDB as DB engine. I want to create a table that has compound primary key. I use this code: CREATE TABLE sample_table ( hash VARCHAR(20), id INTEGER, data VARCHAR(256), PRIMARY KEY(hash, ...
0
votes
0answers
21 views

HSQLDB and Oracle Packages

I am trying to create a HSQLDB duplicate of my test environment Oracle database for use in my integration tests that are part of my CI build. Currently our code is written to only access stored ...
0
votes
2answers
61 views

Grails 2.2.2 'stop-app' calls Hsqldb's 'shutdown' sql command

I am running hsqldb 2.2.9 in server mode (separate jvm from grails), every time grails stop-app calls hsql's shutdown sql command. Can I prevent this behavior? I hope hsqdbkeep running every ...
0
votes
0answers
40 views

Unable to fetch result based on date range query

I want to fetch the record from HSQL database and query is as below: ao.find(IssuesAD.class, Query.select().where("user=? AND (START_TIME = ? OR END_TIME = ? OR (convert(START_TIME,DATE) < ...
0
votes
1answer
42 views

hsqldb inmemory ant target junit test

I have defined an Ant target containing in-memory HSQLDB: <target name="create.tables" depends="-prepare.test"> <property name="db.connection.url" value="jdbc:hsqldb:mem:adb"/> ...
0
votes
1answer
59 views

Unable to query on date condition in specific range

I want to fetch the record from HSQL database and query is as below: ao.find(Issueda.class, Query.select().where("user=? AND TO_DATE(START_TIME, 'yyyy/MM/dd')>= TO_DATE(?,'yyyy/MM/dd') AND ...
0
votes
2answers
34 views

Seting Schema for HSQLDB in JDBC connection

How does one set the schema for HSQLDB in the JDBC URL itself. Kinda how you can do in MySQL with jdbc:mysql://localhost:3306/ -EDIT- My current DB url looks like this ...
-1
votes
0answers
74 views

Cannot establish connection to hsqldb server remotely [closed]

EDIT: I am trying to start the HSQLDB server from the java application on my local PC and get the BindException Cannot assign requested address: JVM_Bind. The server is to be run on the network ...
0
votes
0answers
19 views

persistence in hsqldb with spring

I'm struggling with persistence with spring and hsqldb. I checked out several questions but couldn't manage to find a solution: Threads checked out: No schema in file database after running program ...
0
votes
0answers
41 views

Integrity constraint violation when inserting data in HSQLDB

I'm using HSQLDB + Hibernate to run some unit tests for an application I'm developing. I have a test that persists an entity with three OneToOne relation with others entities. When I run the test ...
5
votes
1answer
62 views

How to retrieve column names from an in memory database?

Here's the code that gives me headaches: public List<String> listColumnsForTable(String tableName) throws SQLException { List<String> columns = new ArrayList<String>(); ...
1
vote
1answer
27 views

Trying to run and access HSQLDB standalone without luck

I am trying to run and access HSQLDB standalone without luck.. I started the database and I got the following output: @wcmisdlin07 ~/Downloads/hsqldb-2.2.9/hsqldb/bin> ./runServer.bat : No such ...
2
votes
1answer
49 views

Lock a entity at database level using Hibernate and HSQLDB

I have a system where I need to create a new instance of SomeEntity in a concurrent context, using another entity as "monitor" as exemplified below: //Begin transaction Monitor monitor = (Monitor) ...
1
vote
1answer
57 views

Trouble with select statement on three table join

Im trying to write a query that will return a set of columns from three different tables. The table that is link between the other two tables is called Table_A, it contains the keys of for the other ...
0
votes
1answer
39 views

Tomcat - HSQLDB

I'm working with Tomcat, I want to get an attribute from my HSQLDB database and accents are replaced by characters like "Ã ©". My JSP contains <"html text /; charset = UTF-8"% @ page contentType ...
0
votes
1answer
41 views

HSQL Table changes only visable after second progamm run

I have a program with an HSQL database. However if I run the program it should create some Orders and stuff. But when the programm is corectly shut down it wont save the dates in to "DB.script" i have ...
1
vote
1answer
27 views

HSQLDB: Embedding Text table within application jar file

I want to embed a HSQLDB database within the application jar file. I'm using a text table. I know I can connect to the database using jdbc:hsqldb:res: protocol to connect to the database within jar ...
0
votes
1answer
8 views

Quering F5 BIG IPs HSQL database

I recently came across the guishell utility of the F5 Bigip devices.The guishell opens a HSQL prompt.Would anybody know how to find the name of all the tables that can be queried within the F5 Bigip ...
0
votes
0answers
33 views

HSQLDialect Database with Hebernate @GeneratedValue(strategy = GenerationType.AUTO)

It looks like HSQLDialect Database with Hebernate @GeneratedValue(strategy = GenerationType.AUTO) will always make the following error: ERROR org.hibernate.engine.jdbc.spi.SqlExceptionHelper - This ...
-2
votes
3answers
75 views

java.sql.SQLException: This function is not supported using HSQL and Spring

Can someone please tell me why am I geting java.sql.SQLException: This function is not supported using HSQL and Spring? I am trying to insert a new row into my database.. Below is my DAO and I get ...
-2
votes
1answer
59 views

New to HSQLDB working with Spring Application with JavaConfig. I dont see database starting up?

I am New to HSQLDB working with Spring Application with JavaConfig. I dont see database starting up?.. I know I must be doing something wrong. Here is my databaeconfig public class DatabaseConfig { ...
0
votes
1answer
50 views

New to HSQLDB working with Spring Application with JavaConfig

I am New to HSQLDB and working with Spring Application with JavaConfig. I want my example to setup a in memory database(HSQLDB) and insert one row. I think I have my stuff all in order but I don't ...
0
votes
1answer
42 views

Connect to OpenOffice Database from C#

I am using Open office database and want to connect data from table in C#, I used connection string "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\work\HP_Data.odb", but at the run time shows an ...
1
vote
1answer
61 views

@Transactional on Spring shutdown to properly shutdown Hsqldb

The heart of this question is: Is it possible to execute a Transaction from a method triggered by a Spring shutdown hook? At the moment I have a HyperSqlDbServer class that implements SmartLifeCycle ...
0
votes
1answer
26 views

How to call HSQLDB Function MONTHS_BETWEEN?

I'm trying to execute the follow SQL: select months_between(sc.dat_initial_period, hp.dat_signup) + 1 as months from harvest_partner hp inner join sales_commission sc on ...
0
votes
0answers
25 views

FIND a NODE in a TREE with a SQL TRIGGER

I am working with MySQL and HSQLDB. I need to write a trigger for the issue below. I have this table: MyTableTree(id, parent_id, name) I would like to avoid to create any circles between the ...
0
votes
1answer
61 views

Hsqldb has no data when populated via maven liquibase plugin

I've created schema and populated it via Maven liquibase plugin: <plugin> <groupId>org.liquibase</groupId> <artifactId>liquibase-maven-plugin</artifactId> ...
0
votes
0answers
58 views

hsqldb : Database lock acquisition when connecting to a file db

I am trying to connect to a hsqldb (using version 2.2.9). I created one using the following: java -cp hsqldb-2.2.9.jar org/hsqldb/util/DatabaseManagerSwing When trying to connect to the db thru my ...
0
votes
1answer
34 views

Hsql create testdata from existing database

Does anybody know a way to generate complex testdata using an existing database for in memory hsqldb? So my junit tests will be able to use a part of correct data. The concrete problem is the ...
0
votes
1answer
48 views

Get String as Date in HSQL

select * from employee having to_date(date, 'DD/MM/YYYY HH24:MI:SS') = to_date('01/01/2012 10:00:00', 'DD/MM/YYYY HH24:MI:SS') Column 'date' is a VARCHAR/STRING as to_date doesnt work in HSQL, ...
1
vote
0answers
25 views

How to form connection between HSQLDB and C# .net?

How to form connection between HSQLDB and C# .net ? I have already looked at SharpHSQL and H2Sharp but not able to connect the HSQLDB.
1
vote
1answer
69 views

Unit tests of Hibernate based code on top of hsqldb 1.8.1.3 no longer work on hsqldb 2.2.9

I frequently write unit tests of my database dependent code using an in-memory HSQL database as the testing database. Recently I decided to upgrade from 1.8.1.3 to 2.2.9 to take advantage of ...
0
votes
1answer
29 views

HSQL Iterated FOR Statement not working

Using HSQL 2.2.5 I need to shudder process one row at a time in a stored procedure, so I thought the "Iterated FOR" statement might do the trick for me. Unfortunately I don't seem to be able to make ...
0
votes
1answer
141 views

JavaDB vs HSQL vs H2 for testing simple to complex Oracle SQL's

DB layer of my product uses MyBatis to execute queries on Oracle database. Wanted to test the DB layer and be able to run the SQLs which are Oracle specific and return the mock data. From the search ...
0
votes
1answer
46 views

SQL Anomaly Using 'USING' Clause with Nested Queries?

I have a normalized database containing 3 tables whose DDL is this: CREATE CACHED TABLE Clients ( cli_id INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 100) PRIMARY KEY, ...
0
votes
0answers
58 views

hsqldb getBlob() always returns blob with 0 length

EDIT: okay i somewhat "solved" it, i am storing the image object as type other (serializable) in my hsqldb, i am not gonna mark this as solved because the original problem persists, but this "solves" ...
0
votes
1answer
68 views

mysql dialect in hsqldb

I'm using hibernate to manage DB operations and MySQL in my application - use org.hibernate.dialect.MySQLInnoDBDialect as the hibernate dialect. But for testing purposes I'm using HSQLDB 1.8.0.10. I ...
2
votes
2answers
104 views

How connect multiply databases ( hsqldb, mysql ) with DB setting in separate files

Basically I want to decide with which of 2 databases project will run. I have following hibernateContext.xml <bean id="propertyConfigurer" ...
0
votes
1answer
93 views

junit hsqldb spring integration version error

I am using hsqldb 2.2.8 version with <spring.version>3.2.2.RELEASE</spring.version> <hibernate.version>3.5.4-Final</hibernate.version> these versions. here is the error: ...
0
votes
0answers
80 views

EJBException: The bean encountered a non-application exception

I got stock with this thing. All my unit testings worked fine except for this one. I already have a bean: @Entity @Table(name = "tbl_place", uniqueConstraints = @UniqueConstraint(columnNames = ...

1 2 3 4 5 18