We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e94b728 commit d145deaCopy full SHA for d145dea
const.go
@@ -10,7 +10,7 @@
10
package mysql
11
12
// Constants documentation:
13
-// http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol
+// http://dev.mysql.com/doc/internals/en/client-server-protocol.html
14
15
const (
16
MIN_PROTOCOL_VERSION = 10
driver.go
@@ -18,7 +18,7 @@ import (
18
type mysqlDriver struct{}
19
20
// Open new Connection.
21
-// See http://code.google.com/p/go-mysql-driver/#DSN_(Data_Source_Name) for how
+// See https://github.com/Go-SQL-Driver/MySQL#dsn-data-source-name for how
22
// the DSN string is formated
23
func (d *mysqlDriver) Open(dsn string) (driver.Conn, error) {
24
var e error
0 commit comments