更新 https://github.com/lib/pq
This commit is contained in:
astaxie
2014-03-31 22:44:11 +08:00
parent 25eb3b546b
commit 64b8fc40e2

View File

@@ -9,7 +9,7 @@ MySQL被Oracle收购之后正在逐步的封闭自MySQL 5.5.31以后的所有
## 驱动
Go实现的支持PostgreSQL的驱动也很多因为国外很多人在开发中使用了这个数据库。
- https://github.com/bmizerany/pq 支持database/sql驱动纯Go写的
- https://github.com/lib/pq 支持database/sql驱动纯Go写的
- https://github.com/jbarham/gopgsqldriver 支持database/sql驱动纯Go写的
- https://github.com/lxn/go-pgsql 支持database/sql驱动纯Go写的
@@ -43,7 +43,7 @@ package main
import (
"database/sql"
"fmt"
_ "github.com/bmizerany/pq"
_ "https://github.com/lib/pq"
)
func main() {