package
0.0.0-20210726165104-42ea4af6fad4
Repository: https://github.com/chenyendu/gowebdev.git
Documentation: pkg.go.dev

# README

Using MySQL

  1. Install MySQL
  2. We will need a MySQL driver
  3. Include driver in your imports
  4. Determine the Data Source Name
  5. Open a connection
    • db, err := sql.Open("mysql", "user:password@tcp(localhost:5555)/dbname?charset=utf-8)

package sql