pub trait SqlExecutorMut {
type Error: Error;
// Required methods
fn sql_query_values(&mut self, query: &str) -> Result<Vec<u32>, Self::Error>;
fn sql_execute(&mut self, query: &str) -> Result<(), Self::Error>;
}
Expand description
Similar to SqlExecutor
, but for implementations that require mutable access to
the connection to work.