在执行命令Go的Ubuntu 16.04版本1.8上
go get github.com/go-sql-driver/mysql
我收到此错误:
github.com/go-sql-driver/mysql/conncheck.go:29: undefined: syscall.Conn
如何解决此问题?
答案 0 :(得分:0)
Go-MySQL-Driver only supports Go 1.9或更高版本。您正在使用Go 1.8,并且syscall.Conn接口为only introduced in Go 1.9。
您应在系统上升级到Go的更高版本,或使用支持Go早期版本的备用SQL驱动程序。