mirror of https://github.com/jackc/pgx.git
Previously, a failed connection could be put back in a pool and when the next query was attempted it would fail immediately trying to prepare the query or reset the deadline. It wasn't clear if the Query or Exec call could safely be retried since there was no way to know where it failed. You can now call LastQuerySent and if it returns false then you're guaranteed that the last call to Query(Ex)/Exec(Ex) didn't get far enough to attempt to send the query. The call can be retried with a new connection. This is used in the stdlib to return a ErrBadConn if a network error occurred and the statement was not attempted. Fixes #427 |
||
---|---|---|
.. | ||
opendb.go | ||
sql.go | ||
sql_test.go | ||
stdlibutil110_test.go | ||
stdlibutil_test.go |