Stmt implements driver.Stmt.
| 110 | |
| 111 | // Stmt implements driver.Stmt. |
| 112 | type Stmt struct { |
| 113 | conn *Conn |
| 114 | query string |
| 115 | } |
| 116 | |
| 117 | func (s *Stmt) Close() error { return nil } |
| 118 | func (s *Stmt) NumInput() int { return -1 } |
nothing calls this directly
no outgoing calls
no test coverage detected