Skip to content

Commit 5ea236e

Browse files
committed
changed package path to lowercase
1 parent e9a3f83 commit 5ea236e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
A MySQL-Driver for Go's [database/sql](http://golang.org/pkg/database/sql) package
44

5-
![Go-MySQL-Driver logo](https://raw.github.com/wiki/Go-SQL-Driver/MySQL/go-mysql-driver_m.jpg "Golang Gopher transporting the MySQL Dolphin in a wheelbarrow")
5+
![Go-MySQL-Driver logo](https://raw.github.com/wiki/go-sql-driver/mysql/go-mysql-driver_m.jpg "Golang Gopher transporting the MySQL Dolphin in a wheelbarrow")
66

77
**Current tagged Release:** March 2, 2013 (stable beta 4)
88

9-
[![Build Status](https://travis-ci.org/Go-SQL-Driver/MySQL.png?branch=master)](https://travis-ci.org/Go-SQL-Driver/MySQL) *(master branch)*
9+
[![Build Status](https://travis-ci.org/go-sql-driver/mysql.png?branch=master)](https://travis-ci.org/go-sql-driver/mysql) *(master branch)*
1010

1111
---------------------------------------
1212
* [Features](#features)
@@ -25,7 +25,7 @@ A MySQL-Driver for Go's [database/sql](http://golang.org/pkg/database/sql) packa
2525
---------------------------------------
2626

2727
## Features
28-
* Lightweight and [fast](https://github.com/Go-SQL-Driver/SQL-Benchmark "golang MySQL-Driver performance")
28+
* Lightweight and [fast](https://github.com/go-sql-driver/sql-benchmark "golang MySQL-Driver performance")
2929
* Native Go implementation. No C-bindings, just pure Go
3030
* Connections over TCP/IPv4, TCP/IPv6 or Unix Sockets
3131
* Automatic handling of broken connections
@@ -42,7 +42,7 @@ A MySQL-Driver for Go's [database/sql](http://golang.org/pkg/database/sql) packa
4242
## Installation
4343
Simple install the package to your [$GOPATH](http://code.google.com/p/go-wiki/wiki/GOPATH "GOPATH") with the [go tool](http://golang.org/cmd/go/ "go command") from shell:
4444
```bash
45-
$ go get github.com/Go-SQL-Driver/MySQL
45+
$ go get github.com/go-sql-driver/mysql
4646
```
4747
Make sure [Git is installed](http://git-scm.com/downloads) on your machine and in your system's `PATH`.
4848

@@ -52,14 +52,14 @@ _Go MySQL Driver_ is an implementation of Go's `database/sql/driver` interface,
5252
Use `mysql` as `driverName` and a valid [DSN](#dsn-data-source-name) as `dataSourceName`
5353
```go
5454
import "database/sql"
55-
import _ "github.com/Go-SQL-Driver/MySQL"
55+
import _ "github.com/go-sql-driver/mysql"
5656

5757
db, e := sql.Open("mysql", "user:password@/dbname?charset=utf8")
5858
```
5959

6060
All further methods are listed here: http://golang.org/pkg/database/sql
6161

62-
[Examples are available in our Wiki](https://github.com/Go-SQL-Driver/MySQL/wiki/Examples "Go-MySQL-Driver Examples").
62+
[Examples are available in our Wiki](https://github.com/go-sql-driver/mysql/wiki/Examples "Go-MySQL-Driver Examples").
6363

6464

6565
## DSN (Data Source Name)
@@ -136,14 +136,14 @@ user:password@/
136136
```
137137

138138
## Testing / Development
139-
To run the driver tests you may need to adjust the configuration. See [this Wiki-Page](https://github.com/Go-SQL-Driver/MySQL/wiki/Testing "Testing") for details.
139+
To run the driver tests you may need to adjust the configuration. See [this Wiki-Page](https://github.com/go-sql-driver/mysql/wiki/Testing "Testing") for details.
140140

141-
Go-MySQL-Driver is not feature-complete yet. Your help is very appreciated. If you want to contribute, you can work on an [open issue](https://github.com/Go-SQL-Driver/MySQL/issues?state=open).
141+
Go-MySQL-Driver is not feature-complete yet. Your help is very appreciated. If you want to contribute, you can work on an [open issue](https://github.com/go-sql-driver/mysql/issues?state=open).
142142

143143
---------------------------------------
144144

145145
## License
146-
Go-MySQL-Driver is licensed under the [Mozilla Public License Version 2.0](https://raw.github.com/Go-SQL-Driver/MySQL/master/LICENSE)
146+
Go-MySQL-Driver is licensed under the [Mozilla Public License Version 2.0](https://raw.github.com/go-sql-driver/mysql/master/LICENSE)
147147

148148
Mozilla summarizes the license scope as follows:
149149
> MPL: The copyleft applies to any files containing MPLed code.
@@ -156,4 +156,4 @@ That means:
156156

157157
Please read the [MPL 2.0 FAQ](http://www.mozilla.org/MPL/2.0/FAQ.html) if you have further questions regarding the license.
158158

159-
You can read the full terms here: [LICENSE](https://raw.github.com/Go-SQL-Driver/MySQL/master/LICENSE)
159+
You can read the full terms here: [LICENSE](https://raw.github.com/go-sql-driver/mysql/master/LICENSE)

0 commit comments

Comments
 (0)