From 66cd63e0b53a115aa007e2c101ee1fee4d4dc4d2 Mon Sep 17 00:00:00 2001 From: caminsha Date: Mon, 18 Jul 2022 00:05:20 +0200 Subject: [PATCH 1/2] Testing the markdown stuff --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b2ddee3..6e38fb2 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,16 @@ This is a small test area how to edit SQLite databases and update some values ac ## Files ``` +├── README.md # This file +├── requirements.txt ├── script.sh ├── sql │   ├── create_db.sql │   ├── insert_data.sql -│   └── show_all.sql +│   ├── show_all.sql +│   ├── show_sg.sql +│   └── update_sg.sql +├── start.py └── test.db ``` -- 2.43.4 From 86e08f24fe21397dc48ea8ec33094275bcc7d01c Mon Sep 17 00:00:00 2001 From: caminsha Date: Mon, 18 Jul 2022 00:11:21 +0200 Subject: [PATCH 2/2] Update README --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6e38fb2..b65c33e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ This is a small test area how to edit SQLite databases and update some values ac ## Files ``` -├── README.md # This file ├── requirements.txt ├── script.sh ├── sql @@ -15,12 +14,14 @@ This is a small test area how to edit SQLite databases and update some values ac │   ├── show_sg.sql │   └── update_sg.sql ├── start.py -└── test.db ``` -- `script.sh`: Small script to executre commands inside the sql-files (see `sql/`) +- `requirements.txt`: requirements for the python script +- `script.sh`: Small & ugly script to execute commands inside the sql-files (see `sql/`) - `sql/` - `create_db.sql`: creates the small test database - `insert_data.sql`: insert some fictive test values into the database - `show_all.sql`: Shows all the data inside the database from table customers -- `test.db`: Not in this repository as it will be created + - `show_sg.sql`: Show all the data which are from St. Gallen (and will get updated) + - `update_sg.sql`: Update the entries so the city is written consistent +- `start.py`: small python helper script -- 2.43.4