Skip to content

possible sqlite3 solution on windows 10 #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -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.