vote up 1 vote down star
2

Hi ,

i wanna write a small (5-6 table) desktop app in java.I wanna use Firebird 2.1. database.But i googled and see HSQLDB.I wanna make a decision between firebird and hsqldb :)

So which database i have to use ?

flag

67% accept rate
Why have you narrowed it down to those two? Have you looked at Oracle, or MySQL? – jjnguy Jul 27 at 12:47
1  
+h2database.com – lutz Jul 27 at 12:47
1  
I would go with Apache Derby. It is actually very well crafted, can be transactional if needed (although never tried), being written in Java is additional plus. Problems I've found it will not 'give back' taken disk space when you delete data in tables, once I was not able to fix one index.. – as Jul 27 at 13:17
+1 for Derby / Java DB, it is included in the Java SE Development Kit. – mjustin Dec 6 at 17:49

5 Answers

vote up 2 vote down check

For a desktop application an embedded database should be enough. hsqldb or h2 are very well suited for this. You just have to add the JAR file to you applications classpath. Firebird looks more complex.

Actually, H2 is more advanced than hsqldb.

link|flag
vote up 6 vote down

Firebird runs in a process of its own and your java app needs to communicate with it. The advantage HSQLDB has that it is written in java, and can run in the same process, which simplifies your installation and runtime check ups (Is the db running, connection errors, etc.). It can persist the data to the disk as well. AN additional option is the H2 database db, which also can run in process.

I'd go with the HSQLDB or H2.

link|flag
1  
I think H2 is the successor to HSQLDB, original author's second pure java database ... appears to have way more features – basszero Jul 27 at 13:02
1  
Firebird Embedded runs in the same process too. With the advantage that if you need to scale the database later you can simply move it to a server. – Douglas Tosi Jul 28 at 11:35
Can Firebird Embedded run embedded in a Java application so that it runs in the java.exe process? AFAIK this is not the case. – mjustin Dec 6 at 17:45
@mjustin - no, it is run in a separate process – David Rabinowitz 2 days ago
vote up 0 vote down

Don't forget that Java 6 comes with JavaDB, and that may be a useful implementation for a first solution. It's a repackaged Apache Derby, and consequently quite powerful.

link|flag
1  
It is optional in the installation. – David Rabinowitz Jul 27 at 12:51
vote up 0 vote down

Assalamu alaikom,

I recomend HSQLDB because it's implemented in Java (so you have the same platform as the application) and I guess that you don't need any of the feature for the project of that size that could FireBird provide.

link|flag
vote up 0 vote down

Firebird is very good embedded database and just win an award at SouceForge this year

SQLite have good press for embedded Database too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.