Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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