pub async fn insert(
executor: impl Executor<'_>,
model: &str,
columns: &[&str],
values: &[Value<'_>],
) -> Result<(), Error>Expand description
Inserts a single row.
Parameter:
model: Table to insert tocolumns: Columns to setvaluesfor.values: Values to bind to the corresponding columns.