Skip to content

Commit a88133d

Browse files
committedMar 20, 2013
updated package path
1 parent 26f650c commit a88133d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎driver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
type mysqlDriver struct{}
1919

2020
// Open new Connection.
21-
// See https://github.com/Go-SQL-Driver/MySQL#dsn-data-source-name for how
21+
// See https://github.com/go-sql-driver/mysql#dsn-data-source-name for how
2222
// the DSN string is formated
2323
func (d *mysqlDriver) Open(dsn string) (driver.Conn, error) {
2424
var err error

‎driver_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var (
1818
once sync.Once
1919
)
2020

21-
// See https://github.com/Go-SQL-Driver/MySQL/wiki/Testing
21+
// See https://github.com/go-sql-driver/mysql/wiki/Testing
2222
func getEnv() bool {
2323
once.Do(func() {
2424
user := os.Getenv("MYSQL_TEST_USER")

‎errors.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ var (
1515
errMalformPkt = errors.New("Malformed Packet")
1616
errPktSync = errors.New("Commands out of sync. You can't run this command now")
1717
errPktSyncMul = errors.New("Commands out of sync. Did you run multiple statements at once?")
18-
errOldPassword = errors.New("It seems like you are using old_passwords, which is unsupported. See https://github.com/Go-SQL-Driver/MySQL/wiki/old_passwords")
18+
errOldPassword = errors.New("It seems like you are using old_passwords, which is unsupported. See https://github.com/go-sql-driver/mysql/wiki/old_passwords")
1919
errPktTooLarge = errors.New("Packet for query is too large. You can change this value on the server by adjusting the 'max_allowed_packet' variable.")
2020
)

0 commit comments

Comments
 (0)
Please sign in to comment.