Rollback the current transaction.
(&mut self)
| 300 | |
| 301 | /// Rollback the current transaction. |
| 302 | pub async fn rollback(&mut self) -> NodeDbResult<()> { |
| 303 | let resp = self.send(OpCode::Rollback, TextFields::default()).await?; |
| 304 | check_error(resp) |
| 305 | } |
| 306 | |
| 307 | /// Set a session parameter. |
| 308 | pub async fn set_parameter(&mut self, key: &str, value: &str) -> NodeDbResult<()> { |
nothing calls this directly
no test coverage detected