mysql_test.go 213 B

123456789101112
  1. package mysqlx
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. func TestGetDsn(t *testing.T) {
  7. var str = `root:qq123123@tcp(127.0.0.1:3306)/sikey?charset=utf8mb4&parseTime=true&loc=Local`
  8. dsn := withDsn(str)
  9. fmt.Println(dsn)
  10. }