I want to create multiple in-memory sqlite databases with names in python.
In sqlite command line it's possible to do that with this syntax:
':memory:' AS database_name
but when using it in python conenction strings like this:
con = sqlite3.connect("':memory:' AS database_name")
get error.
My problem is how can we create multiple in memory databases with names for accessing them.
How we could do that in python?