diff --git a/de/05.4.md b/de/05.4.md index c1e58ce6..f495203f 100644 --- a/de/05.4.md +++ b/de/05.4.md @@ -6,7 +6,7 @@ PostgreSQL is an object-relational database management system available for many There are many database drivers available for PostgreSQL. Here are three examples of them: -- [https://github.com/bmizerany/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go. +- [https://github.com/lib/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go. - [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) supports `database/sql`, written in pure Go. - [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) supports `database/sql`, written in pure Go. diff --git a/de/05.5.md b/de/05.5.md index de0c65c8..5594d0ee 100644 --- a/de/05.5.md +++ b/de/05.5.md @@ -11,7 +11,7 @@ Because beedb supports `database/sql` interface standards, any driver that imple Mysql: [github/go-mysql-driver/mysql](https://github.com/go-sql-driver/mysql) -PostgreSQL: [github.com/bmizerany/pq](https://github.com/lib/pq) +PostgreSQL: [github.com/lib/pq](https://github.com/lib/pq) SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) diff --git a/de/code/src/apps/ch.5.4/main.go b/de/code/src/apps/ch.5.4/main.go index d4e19b1a..3b7afdaf 100644 --- a/de/code/src/apps/ch.5.4/main.go +++ b/de/code/src/apps/ch.5.4/main.go @@ -5,8 +5,9 @@ package main import ( "database/sql" "fmt" - _ "github.com/bmizerany/pq" "time" + + _ "github.com/lib/pq" ) const ( diff --git a/en/05.4.md b/en/05.4.md index ad168a7e..46faa41b 100644 --- a/en/05.4.md +++ b/en/05.4.md @@ -6,7 +6,7 @@ PostgreSQL is an object-relational database management system available for many There are many database drivers available for PostgreSQL. Here are three examples of them: -- [https://github.com/bmizerany/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go. +- [https://github.com/lib/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go. - [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) supports `database/sql`, written in pure Go. - [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) supports `database/sql`, written in pure Go. diff --git a/en/05.5.md b/en/05.5.md index 23216c9e..cd658088 100644 --- a/en/05.5.md +++ b/en/05.5.md @@ -11,7 +11,7 @@ Because beedb supports `database/sql` interface standards, any driver that imple Mysql: [github/go-mysql-driver/mysql](https://github.com/go-sql-driver/mysql) -PostgreSQL: [github.com/bmizerany/pq](https://github.com/lib/pq) +PostgreSQL: [github.com/lib/pq](https://github.com/lib/pq) SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) diff --git a/en/code/src/apps/ch.5.4/main.go b/en/code/src/apps/ch.5.4/main.go index d4e19b1a..3b7afdaf 100644 --- a/en/code/src/apps/ch.5.4/main.go +++ b/en/code/src/apps/ch.5.4/main.go @@ -5,8 +5,9 @@ package main import ( "database/sql" "fmt" - _ "github.com/bmizerany/pq" "time" + + _ "github.com/lib/pq" ) const ( diff --git a/es/05.4.md b/es/05.4.md index 65dc6f12..4d81ba20 100644 --- a/es/05.4.md +++ b/es/05.4.md @@ -6,7 +6,7 @@ PostgreSQL es una base de datos relacional y de objetos disponible en muchas pla Existen muchos manejadores de bases de datos para PostgreSQL. Aquí hay algunos ejemplos de ellos: -- [https://github.com/bmizerany/pq](https://github.com/lib/pq) soporta `database/sql`, escrita en Go puro. +- [https://github.com/lib/pq](https://github.com/lib/pq) soporta `database/sql`, escrita en Go puro. - [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) soporta `database/sql`, escrita en Go puro - [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) soporta `database/sql`, escrita en Go puro diff --git a/es/05.5.md b/es/05.5.md index 8ee3ef09..cb89d4fe 100644 --- a/es/05.5.md +++ b/es/05.5.md @@ -13,7 +13,7 @@ Mysql: [github.com/ziutek/mymysql/godrv](github.com/ziutek/mymysql/godrv) Mysql: [code.google.com/p/go-mysql-driver](code.google.com/p/go-mysql-driver) -PostgreSQL: [github.com/bmizerany/pq](github.com/bmizerany/pq) +PostgreSQL: [github.com/lib/pq](github.com/lib/pq) SQLite: [github.com/mattn/go-sqlite3](github.com/mattn/go-sqlite3) diff --git a/ja/05.5.md b/ja/05.5.md index f9ef783c..7300b362 100644 --- a/ja/05.5.md +++ b/ja/05.5.md @@ -7,7 +7,7 @@ Mysql:github.com/ziutek/mymysql/godrv[*] Mysql:code.google.com/p/go-mysql-driver[*] -PostgreSQL:github.com/bmizerany/pq[*] +PostgreSQL:github.com/lib/pq[*] SQLite:github.com/mattn/go-sqlite3[*] diff --git a/pt-br/05.4.md b/pt-br/05.4.md index c1e58ce6..f495203f 100644 --- a/pt-br/05.4.md +++ b/pt-br/05.4.md @@ -6,7 +6,7 @@ PostgreSQL is an object-relational database management system available for many There are many database drivers available for PostgreSQL. Here are three examples of them: -- [https://github.com/bmizerany/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go. +- [https://github.com/lib/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go. - [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) supports `database/sql`, written in pure Go. - [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) supports `database/sql`, written in pure Go. diff --git a/pt-br/05.5.md b/pt-br/05.5.md index 87bdeca8..04dcccb8 100644 --- a/pt-br/05.5.md +++ b/pt-br/05.5.md @@ -13,7 +13,7 @@ Mysql: [github.com/ziutek/mymysql/godrv](github.com/ziutek/mymysql/godrv) Mysql: [code.google.com/p/go-mysql-driver](code.google.com/p/go-mysql-driver) -PostgreSQL: [github.com/bmizerany/pq](github.com/bmizerany/pq) +PostgreSQL: [github.com/lib/pq](github.com/lib/pq) SQLite: [github.com/mattn/go-sqlite3](github.com/mattn/go-sqlite3) diff --git a/pt-br/code/src/apps/ch.5.4/main.go b/pt-br/code/src/apps/ch.5.4/main.go index d4e19b1a..3b7afdaf 100644 --- a/pt-br/code/src/apps/ch.5.4/main.go +++ b/pt-br/code/src/apps/ch.5.4/main.go @@ -5,8 +5,9 @@ package main import ( "database/sql" "fmt" - _ "github.com/bmizerany/pq" "time" + + _ "github.com/lib/pq" ) const ( diff --git a/ru/05.4.md b/ru/05.4.md index 29e4c43b..1920610f 100644 --- a/ru/05.4.md +++ b/ru/05.4.md @@ -6,7 +6,7 @@ PostgreSQL - свободная объектно-реляционная сист Есть множество драйверов баз данных для PostgreSQL, мы рассмотрим три из них: -- [https://github.com/bmizerany/pq](https://github.com/bmizerany/pq) поддерживает `database/sql`, чистый код Go. +- [https://github.com/lib/pq](https://github.com/lib/pq) поддерживает `database/sql`, чистый код Go. - [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) поддерживает `database/sql`, чистый код Go. - [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) поддерживает `database/sql`, чистый код Go. @@ -35,7 +35,7 @@ PostgreSQL - свободная объектно-реляционная сист "fmt" "time" - _ "github.com/bmizerany/pq" + _ "github.com/lib/pq" ) const ( diff --git a/zh/05.5.md b/zh/05.5.md index f9d1d5ca..6db69c67 100644 --- a/zh/05.5.md +++ b/zh/05.5.md @@ -6,7 +6,7 @@ beego orm是支持database/sql标准接口的ORM库,所以理论上来说, Mysql: [github/go-mysql-driver/mysql](https://github.com/go-sql-driver/mysql) -PostgreSQL: [github.com/bmizerany/pq](https://github.com/lib/pq) +PostgreSQL: [github.com/lib/pq](https://github.com/lib/pq) SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)