SQLite Forum

Getting the error
Login
> SELECT * FROM master.leagues;

> I am connected to only 1 database (for the time being).

Not sure if this is what you meant, but the database you connect to at the start is "main". So you'd either want "select * from leagues;" or "select * from main.leagues;".

You'd only run the above if you had ATTACH'd a new database under the name of "master"

[ATTACH DATABASE](https://www.sqlite.org/lang_attach.html)