}
// Execute a statement that doesn't return any rows with values.
// This means basically any statement except S
// This means basically any statement except SELECT.
fn execute_valueless(stmt: &mut Stmt) -> Result<(), DbError> {
stmt.stmt.reset().map_err(DbError::reset)?;