Connecting to in-memory SQLite database
We can also create in-memory database.
This is not persistent, but it can be useful to load some data into memory and then do fast SQL queries on that database.
examples/sqlite/in_memory.py
import sqlite3 conn = sqlite3.connect(":memory:") crs = conn.cursor() # use the database here conn.close()