Am 19.04.2016 um 20:34 schrieb Jarred Ford: > Is it possible to create multiple in-memory databases and be able to access > tables with a single query between them? For example, select * from > db1.dbo.table1 db1 join db2.dbo.table1 db2 on db1.x = db2.x.
Yes, that's possible over appropriate FileURIs: https://www.sqlite.org/inmemorydb.html Olaf