0
votes
2answers
12 views
How to create table with column names that look like HSQLDB keywords?
The following SQL will not accepted by HSQLDB because of the name 'position' is a keyword.
CREATE MEMORY TABLE bb (position bigint)
How to create this table without changing the …
0
votes
1answer
16 views
Script stops working on HSQLDB 1.9.0-rc6
DROP VIEW V1 IF EXISTS;
DROP TABLE T1 IF EXISTS;
CREATE TABLE T1 (id INT, name VARCHAR(32), age int);
CREATE VIEW V1 AS (SELECT * FROM T1 WHERE age < 21);
I have no problem …
0
votes
2answers
54 views
something funny with embedded hsql
Hello good people
i'm just curious about something.I'm using hsql in myproject (embedded of course).At some time i felt the need to visualize what hibernate was generating.I took a …
0
votes
1answer
27 views
Grails OC4J trouble deploying to 10.1.3.1 - any help appreciated
I've got a Grails app that's deployed successfully on a stand-alone OC4J instance, but when I try and deploy it to the full version via the GUI I get this problem:
[Nov 5, 2009 10 …
1
vote
1answer
139 views
Hibernate ConstraintViolationException in join table
I'm running into a ConstraintViolationException when I try to save an object with a @OneToMany map in it. Hibernate either seems to think that I'm trying to put a NULL into the map …
1
vote
1answer
225 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:
i …
0
votes
2answers
101 views
Mapping a table called “group” in Hibernate for DB2 and HSQLDB
I have a table called group, that I am trying to map using hibernate for DB2 and HSQLDB. Table name group is a reserved word and it must be quoted in HSQLDB. However DB2 does not l …
0
votes
2answers
87 views
Storage-In-File Database for C#/.NET 3.5 ?
Is there something like HSQLDB (for Java) which can be run in a storage-in-file mode for C#/.NET 3.5?
0
votes
1answer
49 views
Recovering HyperSQL Database
We are using JBoss 4.0.3 SP1 using Hypersonic as its internal storage engine (timers, queues, etc.)
The database is no longer accessible (most likely data corruption) giving error …
1
vote
2answers
102 views
How to run a HSQLDB server in memory-only mode
Hi
In the documentation of the HSQLDB is a command line statement to start a HSQLDB server (HSQLDB Doc). But there is this "file:mydb" property, so I assume its not in memory-only …
0
votes
2answers
67 views
Logback - C3P0 and HSQLDB
I'm trying to get LogBack to use a HSQLDB with C3P0. I'm stuck with this configuration at the moment given my current environment. I have a large investment with Log4J code and wil …
0
votes
1answer
123 views
Table Not Found with Hibernate and HSQLDB
Hey Guys
We're using hibernate entitymanager to map our entities through JPA. And we are using HSQLDB in-memory database for unit testing. Everything was fine until a recent refac …
0
votes
2answers
92 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-w …
1
vote
2answers
293 views
How to embed HSQL in file with Spring to a WebApp
I have a webApp whit Spring and works correctly when I use hsql in server mode but in file mode it only passes the unit test. This is my data source:
<bean id="dataSource" clas …
1
vote
3answers
172 views
A quick-switch alternative for HSQLDB file mode (I need concurrent access now)
I was happily working with HSQLDB by just having my DB URL like this:
jdbc:hsqldb:file:target/testdb;
...and having everything like if I was on any other network database. Then …
