Skip to content

Commit 18ec8b8

Browse files
committed
Fix lib/pg Pgsql database link
1 parent 0a33380 commit 18ec8b8

File tree

14 files changed

+18
-15
lines changed

14 files changed

+18
-15
lines changed

de/05.4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PostgreSQL is an object-relational database management system available for many
66

77
There are many database drivers available for PostgreSQL. Here are three examples of them:
88

9-
- [https://github.com/bmizerany/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go.
9+
- [https://github.com/lib/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go.
1010
- [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) supports `database/sql`, written in pure Go.
1111
- [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) supports `database/sql`, written in pure Go.
1212

de/05.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Because beedb supports `database/sql` interface standards, any driver that imple
1111

1212
Mysql: [github/go-mysql-driver/mysql](https://github.com/go-sql-driver/mysql)
1313

14-
PostgreSQL: [github.com/bmizerany/pq](https://github.com/lib/pq)
14+
PostgreSQL: [github.com/lib/pq](https://github.com/lib/pq)
1515

1616
SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
1717

de/code/src/apps/ch.5.4/main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ package main
55
import (
66
"database/sql"
77
"fmt"
8-
_ "github.com/bmizerany/pq"
98
"time"
9+
10+
_ "github.com/lib/pq"
1011
)
1112

1213
const (

en/05.4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PostgreSQL is an object-relational database management system available for many
66

77
There are many database drivers available for PostgreSQL. Here are three examples of them:
88

9-
- [https://github.com/bmizerany/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go.
9+
- [https://github.com/lib/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go.
1010
- [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) supports `database/sql`, written in pure Go.
1111
- [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) supports `database/sql`, written in pure Go.
1212

en/05.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Because beedb supports `database/sql` interface standards, any driver that imple
1111

1212
Mysql: [github/go-mysql-driver/mysql](https://github.com/go-sql-driver/mysql)
1313

14-
PostgreSQL: [github.com/bmizerany/pq](https://github.com/lib/pq)
14+
PostgreSQL: [github.com/lib/pq](https://github.com/lib/pq)
1515

1616
SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
1717

en/code/src/apps/ch.5.4/main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ package main
55
import (
66
"database/sql"
77
"fmt"
8-
_ "github.com/bmizerany/pq"
98
"time"
9+
10+
_ "github.com/lib/pq"
1011
)
1112

1213
const (

es/05.4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PostgreSQL es una base de datos relacional y de objetos disponible en muchas pla
66

77
Existen muchos manejadores de bases de datos para PostgreSQL. Aquí hay algunos ejemplos de ellos:
88

9-
- [https://github.com/bmizerany/pq](https://github.com/lib/pq) soporta `database/sql`, escrita en Go puro.
9+
- [https://github.com/lib/pq](https://github.com/lib/pq) soporta `database/sql`, escrita en Go puro.
1010
- [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) soporta `database/sql`, escrita en Go puro
1111
- [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) soporta `database/sql`, escrita en Go puro
1212

es/05.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Mysql: [github.com/ziutek/mymysql/godrv](github.com/ziutek/mymysql/godrv)
1313

1414
Mysql: [code.google.com/p/go-mysql-driver](code.google.com/p/go-mysql-driver)
1515

16-
PostgreSQL: [github.com/bmizerany/pq](github.com/bmizerany/pq)
16+
PostgreSQL: [github.com/lib/pq](github.com/lib/pq)
1717

1818
SQLite: [github.com/mattn/go-sqlite3](github.com/mattn/go-sqlite3)
1919

ja/05.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Mysql:github.com/ziutek/mymysql/godrv[*]
77

88
Mysql:code.google.com/p/go-mysql-driver[*]
99

10-
PostgreSQL:github.com/bmizerany/pq[*]
10+
PostgreSQL:github.com/lib/pq[*]
1111

1212
SQLite:github.com/mattn/go-sqlite3[*]
1313

pt-br/05.4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PostgreSQL is an object-relational database management system available for many
66

77
There are many database drivers available for PostgreSQL. Here are three examples of them:
88

9-
- [https://github.com/bmizerany/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go.
9+
- [https://github.com/lib/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go.
1010
- [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) supports `database/sql`, written in pure Go.
1111
- [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) supports `database/sql`, written in pure Go.
1212

pt-br/05.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Mysql: [github.com/ziutek/mymysql/godrv](github.com/ziutek/mymysql/godrv)
1313

1414
Mysql: [code.google.com/p/go-mysql-driver](code.google.com/p/go-mysql-driver)
1515

16-
PostgreSQL: [github.com/bmizerany/pq](github.com/bmizerany/pq)
16+
PostgreSQL: [github.com/lib/pq](github.com/lib/pq)
1717

1818
SQLite: [github.com/mattn/go-sqlite3](github.com/mattn/go-sqlite3)
1919

pt-br/code/src/apps/ch.5.4/main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ package main
55
import (
66
"database/sql"
77
"fmt"
8-
_ "github.com/bmizerany/pq"
98
"time"
9+
10+
_ "github.com/lib/pq"
1011
)
1112

1213
const (

ru/05.4.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PostgreSQL - свободная объектно-реляционная сист
66

77
Есть множество драйверов баз данных для PostgreSQL, мы рассмотрим три из них:
88

9-
- [https://github.com/bmizerany/pq](https://github.com/bmizerany/pq) поддерживает `database/sql`, чистый код Go.
9+
- [https://github.com/lib/pq](https://github.com/lib/pq) поддерживает `database/sql`, чистый код Go.
1010
- [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) поддерживает `database/sql`, чистый код Go.
1111
- [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) поддерживает `database/sql`, чистый код Go.
1212

@@ -35,7 +35,7 @@ PostgreSQL - свободная объектно-реляционная сист
3535
"fmt"
3636
"time"
3737

38-
_ "github.com/bmizerany/pq"
38+
_ "github.com/lib/pq"
3939
)
4040

4141
const (

zh/05.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ beego orm是支持database/sql标准接口的ORM库,所以理论上来说,
66

77
Mysql: [github/go-mysql-driver/mysql](https://github.com/go-sql-driver/mysql)
88

9-
PostgreSQL: [github.com/bmizerany/pq](https://github.com/lib/pq)
9+
PostgreSQL: [github.com/lib/pq](https://github.com/lib/pq)
1010

1111
SQLite: [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
1212

0 commit comments

Comments
 (0)