Skip to content

Tutorial code for my videos Database Usage in Golang Part 1 and Part 2

License

Notifications You must be signed in to change notification settings

isensee-bastian/db-basics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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