diff --git a/ja/ebook/05.4.md b/ja/ebook/05.4.md index 8012669a..05e2936a 100644 --- a/ja/ebook/05.4.md +++ b/ja/ebook/05.4.md @@ -9,7 +9,7 @@ MySQLはOracleに買収され、現在徐々にクローズされつつありま ## ドライバ 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() {