Exec processes the query. Can only be called once.
(ctx context.Context)
| 144 | type Query interface { |
| 145 | // Exec processes the query. Can only be called once. |
| 146 | Exec(ctx context.Context) *Result |
| 147 | // Close recovers memory used by the query result. |
| 148 | Close() |
| 149 | // Statement returns the parsed statement of the query. |
no outgoing calls