(context.Context, string, ...interface{})
| 13 | |
| 14 | type DBTX interface { |
| 15 | Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error) |
| 16 | Query(context.Context, string, ...interface{}) (pgx.Rows, error) |
| 17 | QueryRow(context.Context, string, ...interface{}) pgx.Row |
| 18 | SendBatch(context.Context, *pgx.Batch) pgx.BatchResults |
no outgoing calls