Skip to main content

async_execute_update

Function async_execute_update 

Source
pub async fn async_execute_update(
    client: &Client,
    params: &Option<&Value>,
) -> Result<Value>
Expand description
  1. Async execute update (with synchronous_commit=off for high-volume operations)

High-performance update for WHERE predicate affecting more than 100 rows. Disables synchronous_commit temporarily for maximum throughput. Significant performance benefit when WHERE condition matches > 100 rows. Always include WHERE clause to prevent accidental updates. Returns rows affected count.