2
0

implement driver.Connector

This commit is contained in:
James Lawrence
2018-02-25 14:17:38 -05:00
parent 606697ffdf
commit 19a9154d23
5 changed files with 115 additions and 11 deletions
+20
View File
@@ -0,0 +1,20 @@
// +build go1.10
package stdlib_test
import (
"database/sql"
"testing"
"github.com/jackc/pgx"
"github.com/jackc/pgx/stdlib"
)
func openDB(t *testing.T) *sql.DB {
config, err := pgx.ParseConnectionString("postgres://pgx_md5:secret@127.0.0.1:5432/pgx_test")
if err != nil {
t.Fatalf("pgx.ParseConnectionString failed: %v", err)
}
return stdlib.OpenDB(config)
}