c++ - Lightweight cross platform database engine to work with my Qt Application -


I am developing a QT application to run on Windows, Mac and Linux (Ubuntu Desktop). The development is in the course's C ++ and it is a desktop application that needs to be stored and retrieved "tabular" information on an ongoing basis.

I do not want to disturb my users with pre-installed MySQL or some other things.

Is there a light database engine that I can use from my application as an SDK which will store locally on file system and will support SQL queries?

Try SQLite:

Comments