修正go-sql-driver的地址

使用go get github.com/Go-SQL-Driver/MySQL获取时会报错,检查后发现确切的地址应该全是小写的。
This commit is contained in:
Yin Peng
2013-05-31 10:05:22 +09:00
parent adf2ce9e19
commit 0d1c41521e

View File

@@ -4,7 +4,7 @@
## MySQL驱动
Go中支持MySQL的驱动目前比较多有如下几种有些是支持database/sql标准而有些是采用了自己的实现接口,常用的有如下几种:
- https://github.com/Go-SQL-Driver/MySQL 支持database/sql全部采用go写。
- https://github.com/go-sql-driver/mysql 支持database/sql全部采用go写。
- https://github.com/ziutek/mymysql 支持database/sql也支持自定义的接口全部采用go写。
- https://github.com/Philio/GoMySQL 不支持database/sql自定义接口全部采用go写。