pub async fn update_multi(
connection: &mut PgConnection,
table_name: &str,
values: &[Vec<(&str, Box<dyn Expression>)>],
filters: Option<Vec<Box<dyn BooleanExpression>>>,
limit: Option<usize>,
) -> Result<Vec<Row>, SqlxDatabaseError>Expand description
ยงErrors
Will return Err if the update multi execution failed.