File creation + added to navbar

This commit is contained in:
sam
2023-12-08 08:51:05 +01:00
parent 5550a5e229
commit aa7bd7d352
3 changed files with 16 additions and 1 deletions

View File

@@ -15,4 +15,5 @@ nav:
- Storyboard: "brainstorm/storyboard"
- to-do list: "brainstorm/to-do list"
- 📚 Documentatie:
- Presentatie: documentatie/presentatie
- Presentatie: documentatie/presentatie
- Database: documentatie/database

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@@ -0,0 +1,14 @@
### Database
We hebben een database gemaakt. De tabel heet scores en heeft de volgende kolommen: Naam, Scores.
![Alt text](../assets/databaseTableScreenshot.png)
Om iets in de database te zetten moet je de volgende code gebruiken:
```INSERT INTO Scores (Naam,Score)
VALUES ("henk",413);```
Bron: https://www.w3schools.com/sql/sql_insert.asp