8 lines
177 B
Go
8 lines
177 B
Go
|
package advsql
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func connString(host string, port uint16, user, pass, db string) string {
|
||
|
return fmt.Sprintf("%s:%s@tcp(%s:%d)/%s", user, pass, host, port, db)
|
||
|
}
|