I don\'t know if this is the right title for this question. Anyway, recently I have heard about that you could make life easier when creating database. By in which you use objec
If you are using an object oriented database, you are not using a relational database like MySQL or SQLite.
Instead, the database directly stores your application objects, and you usually can query these with some query language or API.
I have only experience with db4o, there you simply do
database.store(object);
and your object is stored.