From bae7723eec33ef9374f378fee67176e6ee354dc0 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Fri, 16 Jul 2021 05:43:16 +0200 Subject: [PATCH] Created Access the database (markdown) --- Access-the-database.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Access-the-database.md diff --git a/Access-the-database.md b/Access-the-database.md new file mode 100644 index 0000000..b55df96 --- /dev/null +++ b/Access-the-database.md @@ -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 +```