.SQLite general

Python’s built in database Your Python installation contains a Python SQL library named sqlite3 that you can use to interact with an SQLite database. SQLite databases are serverless and self-contained, they read and write data to a file.

Read More

My other SQLite resources

I’ve also used SQLite with VC# and VC++ and have resources on my min site dedicated to those languages: Primary other site:https://ibex.tech/csharp/category/c-sharp/databases/sqlite Also:https://ibex.tech/visualcpp/category/databases/sqlite

Read More

Work on SQLite database in memory

If your database isn’t massive and you are carrying out lots of operations on it, it can be much faster to load it into memory instead of working with disk access Opening an existing SQLite database into memory Saving an in memory SQLite database to file

Read More