Prepare implements the driver.Conn.Prepare method.
(query string)
| 217 | |
| 218 | // Prepare implements the driver.Conn.Prepare method. |
| 219 | func (c *conn) Prepare(query string) (driver.Stmt, error) { |
| 220 | return c.PrepareContext(context.Background(), query) |
| 221 | } |
| 222 | |
| 223 | // Close implements the driver.Conn.Close method. |
| 224 | func (c *conn) Close() error { |
nothing calls this directly
no test coverage detected