Object oriented database

后端 未结 3 1905
予麋鹿
予麋鹿 2021-01-28 06:25

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

3条回答
  •  借酒劲吻你
    2021-01-28 06:50

    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.

提交回复
热议问题