Skip to main content

async_execute_delete

Function async_execute_delete 

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

High-performance delete 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 - deleting without one removes all rows. Returns rows affected count.