Lightweight cross-platform database engine for working with my Qt application

I am developing a Qt application to work on Windows, Mac, and Linux (Ubuntu Desktop). Of course, the development is in C ++, and it is a desktop application that needs to constantly store and retrieve tabluar information.

I don’t want to bother my users with pre-installing MySQL or something like that.

Is there an easy database mechanism that I can use as an SDK from my application, which will be stored locally in the file system and support SQL queries?

+4
source share
2 answers

Try SQLite: http://sqlite.org

+12
source

I believe that this (SQLite) will do whatever you ask in your question. From his own experience, it works decently for small data sets. but if you use it for large amounts of data, you might want to use a sql server with a full bang.

0
source

Source: https://habr.com/ru/post/1345608/


All Articles