Ext is a union interface which can bind, query, and exec, used by NamedQuery and NamedExec.
| 95 | // Ext is a union interface which can bind, query, and exec, used by |
| 96 | // NamedQuery and NamedExec. |
| 97 | type Ext interface { |
| 98 | binder |
| 99 | Queryer |
| 100 | Execer |
| 101 | } |
| 102 | |
| 103 | // Preparer is an interface used by Preparex. |
| 104 | type Preparer interface { |
nothing calls this directly
no outgoing calls
no test coverage detected