I\'m using the SQLite Command Line Shell. As documented, I can open a database by supplying it as an argument to the executable:
sqlite3 data.db
I think the simplest way to just open a single database and start querying is:
sqlite> .open "test.db" sqlite> SELECT * FROM table_name ... ;
Notice: This works only for versions 3.8.2+