Will you look for ATTACH and DETACH sqlite commands? You can invoke them by querying any SQLite PDO object.
Commands allow you to attach a separate database file to the current session. An example is:
$connection->query('ATTACH DATABASE blog_entries.sqlite AS BlogEntries;');
, , (: SELECT * FROM entries), . , (: SELECT * FROM BlogEntries.entries)
: SQLite