EDIT:
This PR allows using a sqalx.Driver as an ExecerContext etc. Driver is an interface that contains methods that are found in an *sqlx.DB and *sqlx.Tx. ExecerContext and such were missing from the interface and this was preventing to use their respective methods from a Driver.
EDIT: This PR allows using a
sqalx.Driver
as anExecerContext
etc.Driver
is an interface that contains methods that are found in an*sqlx.DB
and*sqlx.Tx
.ExecerContext
and such were missing from the interface and this was preventing to use their respective methods from aDriver
.