Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lightweight cross platform database engine to work with my Qt Application [closed]

I am developing a Qt application to run on Windows, Mac and Linux (Ubuntu Desktop). Development is in C++ of course and it's a desktop application that needs to store and retrieve "tabluar" information on an ongoing basis.

I do not want to bother my users with pre-installing MySQL or anything alike.

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

like image 263
JasonGenX Avatar asked Dec 16 '22 15:12

JasonGenX


1 Answers

Try SQLite : http://sqlite.org

like image 160
Fred Foo Avatar answered Jan 04 '23 23:01

Fred Foo