Publish HTML quickly. https://html.house
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718
  1. package htmlhouse
  2. import (
  3. "database/sql"
  4. "fmt"
  5. _ "github.com/go-sql-driver/mysql"
  6. )
  7. func (app *app) initDatabase() error {
  8. var err error
  9. app.db, err = sql.Open("mysql", fmt.Sprintf("%s:%s@tcp(%s:3306)/%s?charset=utf8mb4&parseTime=true", app.cfg.DBUser, app.cfg.DBPassword, app.cfg.DBHost, app.cfg.DBName))
  10. if err != nil {
  11. return err
  12. }
  13. return nil
  14. }