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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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