Stmt implements driver.Stmt for MongoDB.
| 191 | |
| 192 | // Stmt implements driver.Stmt for MongoDB. |
| 193 | type Stmt struct { |
| 194 | conn *Conn |
| 195 | query string |
| 196 | } |
| 197 | |
| 198 | // Close closes the statement. |
| 199 | func (s *Stmt) Close() error { |
nothing calls this directly
no outgoing calls
no test coverage detected