+ 1
Database in c++ program?
Is it possible to have a mysql database that works together with a c++ program? I want to make a database where I can store all the data that I need (just for fun) and access it by a c++ program or is there a better way? Let me know, thank you in advance.
2 ответов
+ 3
SQLite: Browsers, Android, iOS and lot of other platforms use this DB because it's so small and useful. It can be merged with C++, Java and many other languages as far as I know.
https://www.sqlite.org/
+ 1
Thank you Aaron Sarkissian.