You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
3
3
A MySQL-Driver for Go's [database/sql](http://golang.org/pkg/database/sql) package
4
4
5
-

5
+

6
6
7
7
**Current tagged Release:** March 2, 2013 (stable beta 4)
@@ -25,7 +25,7 @@ A MySQL-Driver for Go's [database/sql](http://golang.org/pkg/database/sql) packa
25
25
---------------------------------------
26
26
27
27
## 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")
29
29
* Native Go implementation. No C-bindings, just pure Go
30
30
* Connections over TCP/IPv4, TCP/IPv6 or Unix Sockets
31
31
* Automatic handling of broken connections
@@ -42,7 +42,7 @@ A MySQL-Driver for Go's [database/sql](http://golang.org/pkg/database/sql) packa
42
42
## Installation
43
43
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:
44
44
```bash
45
-
$ go get github.com/Go-SQL-Driver/MySQL
45
+
$ go get github.com/go-sql-driver/mysql
46
46
```
47
47
Make sure [Git is installed](http://git-scm.com/downloads) on your machine and in your system's `PATH`.
48
48
@@ -52,14 +52,14 @@ _Go MySQL Driver_ is an implementation of Go's `database/sql/driver` interface,
52
52
Use `mysql` as `driverName` and a valid [DSN](#dsn-data-source-name) as `dataSourceName`
All further methods are listed here: http://golang.org/pkg/database/sql
61
61
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").
63
63
64
64
65
65
## DSN (Data Source Name)
@@ -136,14 +136,14 @@ user:password@/
136
136
```
137
137
138
138
## 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.
140
140
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).
142
142
143
143
---------------------------------------
144
144
145
145
## 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)
147
147
148
148
Mozilla summarizes the license scope as follows:
149
149
> MPL: The copyleft applies to any files containing MPLed code.
@@ -156,4 +156,4 @@ That means:
156
156
157
157
Please read the [MPL 2.0 FAQ](http://www.mozilla.org/MPL/2.0/FAQ.html) if you have further questions regarding the license.
158
158
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