diff --git a/README.md b/README.md index beaa6351..f8ef7094 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Drivers for Go's sql package which currently support database/sql includes: * SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) -* Postgres: [github.com/bylevel/pq](https://github.com/lib/pq) +* Postgres: [github.com/lib/pq](https://github.com/lib/pq) * Postgres: [github.com/bylevel/pq](https://github.com/bylevel/pq) diff --git a/README_CN.md b/README_CN.md index 35d9b9ee..59975d6b 100644 --- a/README_CN.md +++ b/README_CN.md @@ -20,6 +20,8 @@ xorm是一个简单而强大的Go语言ORM库. 通过它可以使数据库操作 * SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) +* Postgres: [github.com/lib/pq](https://github.com/lib/pq) + * Postgres: [github.com/bylevel/pq](https://github.com/bylevel/pq) ## 更新日志 diff --git a/docs/QuickStart.md b/docs/QuickStart.md index 70bf9d23..3f211a2b 100644 --- a/docs/QuickStart.md +++ b/docs/QuickStart.md @@ -63,6 +63,8 @@ xorm当前支持四种驱动如下: * SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) +* Postgres: [github.com/lib/pq](https://github.com/lib/pq) + * Postgres: [github.com/bylevel/pq](https://github.com/bylevel/pq) NewEngine传入的参数和`sql.Open`传入的参数完全相同,因此,使用哪个驱动前,请查看此驱动中关于传入参数的说明文档。