(nv *driver.NamedValue)
| 47 | } |
| 48 | |
| 49 | func (stmt *mysqlStmt) CheckNamedValue(nv *driver.NamedValue) (err error) { |
| 50 | nv.Value, err = converter{}.ConvertValue(nv.Value) |
| 51 | return |
| 52 | } |
| 53 | |
| 54 | func (stmt *mysqlStmt) Exec(args []driver.Value) (driver.Result, error) { |
| 55 | if stmt.mc.closed.Load() { |
nothing calls this directly
no test coverage detected