views:

49

answers:

2

Hopefully I can articulate this well: I'm porting an application I made years ago from VB6 (I know, I know!) to C++/Qt. In my original application, one thing I liked was that I didn't need an actual SQL server running, I could just use MS Access .mdb files. I was wondering if something similar exists for Qt that will work on multiple OSes - a database stored in a file, pretty much, but that I can still run SQL queries with. Not sure if something like this exists or not, but any help appreciated, thanks!

+6  A: 

I second the comment by "Mosg". Have a look at SQLite.

p.marino
Agree. What OP needs is SQLite. Just change application's behavior to database types and everything will works
abatishchev
Thanks for the help, I'll look into it!
Airjoe
A: 

Yeap, here is the full list.

mosg