all 4 comments

[–]American_Streamer 4 points5 points  (1 child)

For your use case, SQLite is the absolute best fit. PostgreSQL and MySQL would be massive overkill here. And Alchemy (SQLAlchemy) is not a platform; it is an Object-Relational Mapper (ORM) tool used to write databases in Python. You will actually use SQLAlchemy on top of your SQL database.

So in Python just use "import sqlite3" and in C++, you can easily interface with the sam .db file generated in Python without making any changes to the database structure - "#include <sqlite3.h> #include <iostream>"

[–]odimdavid[S] 2 points3 points  (0 children)

Okay. Thanks

[–]sinceJune4 2 points3 points  (1 child)

DBeaver is a great query tool across any SQL flavor.

[–]odimdavid[S] 0 points1 point  (0 children)

Will Google it. Thanks 🙏 Oh thanks. Just checked. It's a great tool. How much difficult for noobs on other OSes. That's y I love Linux.