[ja] apply patch]

This commit is contained in:
Shin Kojima
2014-09-21 21:30:04 +09:00
parent 8b66ed4715
commit b374abecaf

View File

@@ -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() {