Comment on Database internals are becoming less important than developer experienceparentComments−TekMol5ySqlite has it natively. After connecting to user1.db just execute this query:ATTACH DATABASE user2.db AS user2;Now you can use user2.tablename in any query just as if was part of user1.db
Comments
Sqlite has it natively. After connecting to user1.db just execute this query:
ATTACH DATABASE user2.db AS user2;
Now you can use user2.tablename in any query just as if was part of user1.db