Close closes the named statement.
()
| 34 | |
| 35 | // Close closes the named statement. |
| 36 | func (n *NamedStmt) Close() error { |
| 37 | return n.Stmt.Close() |
| 38 | } |
| 39 | |
| 40 | // Exec executes a named statement using the struct passed. |
| 41 | // Any named placeholder parameters are replaced with fields from arg. |