Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 502 Bytes

File metadata and controls

12 lines (7 loc) · 502 Bytes

MySQL CRUD

This is an example project that shows the basics of working with the MySQL database in golang. Go provides an abstract datalayer using the database/sql standard library. You need to load the specific driver your database first, than working with it most databases is relatively the same.

Prerequisites

  • Local MySQL instance
  • Valid Golang installation

Implementation