Is there a way to do an inner join across 2 database SQLite files, when they both uses different sqlite passwords?
Example:
SELECT * FROM table1
INNER JOIN table2 ON table1.some_id = table2.some_id
WHERE table1.some_id = 5
where table1 is from 1st database file and table2 is in the 2nd sqlite database file.