Connect receives messages until ReadyForQuery

pgx-vs-pq
Jack Christensen 2013-03-30 21:20:56 -05:00
parent e37c0c9e3a
commit 24e11001c5
1 changed files with 4 additions and 3 deletions

View File

@ -44,13 +44,14 @@ func Connect(options map[string]string) (c *conn, err error) {
for {
response, err = c.rxMsg()
if err != nil {
break
return nil, err
}
fmt.Println(response)
if _, ok := response.(*readyForQuery); ok {
break
}
}
fmt.Println(err)
return c, nil
}