At what point is it worth using a database?

后端 未结 13 1385
广开言路
广开言路 2020-11-29 18:26

I have a question relating to databases and at what point is worth diving into one. I am primarily an embedded engineer, but I am writing an application using Qt to interfa

13条回答
  •  抹茶落季
    2020-11-29 19:04

    You don't need a database if you have a few thousand rows in one or two tables to handle in a single user app (for the embedded point).

    If it is for multiple users (concurrent access, locking) or the need of transactions you definitly should consider a database. Handling complex datastructures in normalized tables and maintain integrety, or a huge amount of data would be another indication you should use a database.

提交回复
热议问题