I am a beginner in software developement and I would like to know what is the best and simplest DBMS to use with Java. I want to create a simple agenda application to improve my skills in software developement, and i want to store the agenda events and access them easily. I am not sure if a dbms is the easiest way, maybe xml or json would do the trick.
Thanks for your time and answers.
I am a beginner in software developement and I would like to know what
Share
If you are sure you want a DBMS, you can use HSQLDB (http://www.hsqldb.org) or Apache Derby (http://db.apache.org) as a simple in-process database.
If you also want to use the opportunity to learn relational databases in general, grab PostgreSQL and use that. It has a very good set of SQL features and is one of the most standard compliant databases out there.