Created Access the database (markdown)

Jonas Kvinge 2021-07-16 05:43:16 +02:00
parent 1e692fdb25
commit bae7723eec
1 changed files with 20 additions and 0 deletions

20
Access-the-database.md Normal file

@ -0,0 +1,20 @@
The database is in a different location based on OS.
## Linux and other Unix systems except macOS
To access the database open a terminal and type:
```
sqlite3 ~/.local/share/strawberry/strawberry/strawberry.db
```
## macOS
To access the database open a terminal and type:
```
sqlite3 ~/Library/Application\ Support/Strawberry/Strawberry/strawberry.db
```
## Windows
To access the database, open a command prompt, and type:
```
cd "\%PROGRAMFILES%\Strawberry Music Player\"
sqlite3 %LOCALAPPDATA%\Strawberry\Strawberry\strawberry.db
```