Removes the prepared statement associated with `name`. Returns whether a statement previously existed.
(&mut self, name: &str)
| 668 | /// |
| 669 | /// Returns whether a statement previously existed. |
| 670 | pub fn remove_prepared_statement(&mut self, name: &str) -> bool { |
| 671 | self.prepared_statements.remove(name).is_some() |
| 672 | } |
| 673 | |
| 674 | /// Removes all prepared statements. |
| 675 | pub fn remove_all_prepared_statements(&mut self) { |
no test coverage detected