BindNamed binds a query within a transaction's bindvar type.
(query string, arg interface{})
| 413 | |
| 414 | // BindNamed binds a query within a transaction's bindvar type. |
| 415 | func (tx *Tx) BindNamed(query string, arg interface{}) (string, []interface{}, error) { |
| 416 | return bindNamedMapper(BindType(tx.driverName), query, arg, tx.Mapper) |
| 417 | } |
| 418 | |
| 419 | // NamedQuery within a transaction. |
| 420 | // Any named placeholder parameters are replaced with fields from arg. |
nothing calls this directly
no test coverage detected