From 31da52afe3e297c6d3b72aba782eef7923173ac2 Mon Sep 17 00:00:00 2001 From: "Luke Charles (charle44)" Date: Fri, 15 Nov 2019 23:55:07 +0000 Subject: [PATCH] possible sqlite3 solution on windows 10 an option for gui navigation of an sqlite database file on windows 10 --- 01 Dynamic Websites.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/01 Dynamic Websites.md b/01 Dynamic Websites.md index c7690a48..47a5595d 100644 --- a/01 Dynamic Websites.md +++ b/01 Dynamic Websites.md @@ -15,7 +15,8 @@ Start by installing the tools on your computer: 2. On Ubuntu (including most online IDEs) it should be installed using the standard package manager: 1. `$ sudo apt-get update` 2. `$ sudo apt-get install sqlite3 libsqlite3-dev` -3. It a bit of a pain to install on Windows 10 but there is a good [YouTube video](https://youtu.be/zOJWL3oXDO8) that covers the process. +3. It a bit of a pain to install on Windows 10 but there is a good [YouTube video](https://youtu.be/zOJWL3oXDO8) that covers the process. Another option is to install sqlite3 using a .zip file from the official website and then to use a DB Browser to be able to +navigate through the database file intuitively. If you use the terminal/command prompt to navigate to the `exercises/01_dynamic_website/` directory you will find a prebuilt database called `bookshop.db`. To open a database you use the `sqlite3 bookshop.db` command. Note: if the file you specify does not exist, a new database will be created. Open the `bookshop.db` database.