SQLite
Open a local SQLite database file in SQL Studio.
Usage
sql-studio sqlite <DATABASE>Arguments
| Argument | Description | Env Var |
|---|---|---|
DATABASE | Path to the SQLite database file | DATABASE |
Preview Mode
If you don't have a database file handy, use the special preview path to launch SQL Studio with a built-in sample database:
sql-studio sqlite previewExamples
# Open a local database
sql-studio sqlite ./chinook.db
# Open with a custom port
sql-studio --address 127.0.0.1:8080 sqlite ./chinook.db
# Preview mode
sql-studio sqlite preview