vote up 2 vote down star
1

Hi,

I need open source database that I can ship with my commercial application. It should not have any installation (i.e., no window service and no setup).

It can be single user database. It should work in Windows environment and used from Java code.

Thanks

flag

45% accept rate

6 Answers

vote up 12 vote down check

I really like SQLite. You can use it with java via SQLiteJDBC. It is very good embedded database. For Java, it might be easier to use Derby though.

link|flag
Firefox uses SQLite – Greg Jan 8 at 20:47
So does the iphone! – chills42 Jan 8 at 21:00
Is Derby ready for prime time? – Paul Tomblin Jan 8 at 21:01
vote up 1 vote down

Look into SQLite. I haven't used it, but I've had apps that claimed to use it, and I couldn't tell the difference.

link|flag
vote up 1 vote down

How about SQLite? It has good performance, and with one user you don't have to worry about concurrency.

link|flag
vote up 4 vote down

You might also want to look at HSQL and H2, which are both open source embedded databases written in Java.

link|flag
vote up 2 vote down

Firebird Embedded - just needs couple of DLL files and you have full database in your hands. Have been using it for years. How to use it in Java

link|flag
vote up 0 vote down

Oracle Berkeley DB: http://www.oracle.com/database/berkeley-db/index.html

link|flag

Your Answer

Get an OpenID
or

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