0

I have to develop embedded project in java and for that I need good embedded database.

Features i need are:

1) relational database 2) GUI interface

Can anyone suggest me good database?

Thanks

Deval
  • 93
  • 3
  • 10
  • hey guys why are you giving minus? what is wrong here – Deval Oct 30 '12 at 06:45
  • Hi Deval! The problem with your question is that it is a discussion-oriented question without a clear answer, and those are not for SO. Please consult the FAQ for more info. – Keppil Oct 30 '12 at 06:47
  • Without knowing what kind of data base features you need, it's really hard to offer any answer. – Ted Hopp Oct 30 '12 at 06:49
  • http://w-shadow.com/blog/2009/02/25/top-4-free-embedded-databases/ http://en.wikipedia.org/wiki/Embedded_database – Sumit Singh Oct 30 '12 at 06:50
  • i have edited my questions in which i have mention some features which i need – Deval Oct 30 '12 at 06:54

1 Answers1

-2

Either

HSQLDB - Used by OpenOffice, tested and stable. It's easy to use. If you want to edit your db-data, you can just open the file and edit the insert statements. or

H2 - Said to be faster (by the developer, who originally designed hsqldb, too) Which one you use is up to you, depending how much performance and how much stability you need.

The developer of H2 has put up a nice performance evaluation: http://www.h2database.com/html/performance.html

see more

Community
  • 1
  • 1
Chintan Khetiya
  • 15,962
  • 9
  • 47
  • 85
  • http://stackoverflow.com/questions/462923/java-embedded-databases-comparison – Richie Aug 26 '14 at 09:00
  • 2
    You copied [this](https://stackoverflow.com/a/463355/839733) answer verbatim, without any attribution to the original author. Coulda just used the duplicate button. – Abhijit Sarkar Feb 28 '19 at 19:17