Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isensee-bastian/db-basics
Tutorial code for my videos Database Usage in Golang Part 1 and Part 2
https://github.com/isensee-bastian/db-basics
basic-programming beginner-tutorial-series database golang learn-to-code relational-databases sql sqlite table youtube
Last synced: 9 days ago
JSON representation
Tutorial code for my videos Database Usage in Golang Part 1 and Part 2
- Host: GitHub
- URL: https://github.com/isensee-bastian/db-basics
- Owner: isensee-bastian
- License: mit
- Created: 2022-06-12T11:53:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-12T11:58:29.000Z (over 2 years ago)
- Last Synced: 2024-06-21T08:07:18.667Z (5 months ago)
- Topics: basic-programming, beginner-tutorial-series, database, golang, learn-to-code, relational-databases, sql, sqlite, table, youtube
- Language: Go
- Homepage: https://youtu.be/SZxCB1hAgPY
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Basic DB usage in Golang
## Content
* How to connect to a DB
* Creating a table with sample data
* Running select queries
* Simple insert, update, delete## Task
* Create a simple application for storing player data
* Players shall be stored with name and current score
* Update of scores and removal of players shall be possible
* Listing all current player data shall be supported, too