InsertDyn in oxide_sql_core::builder - Rust

pub struct InsertDyn<Table, Values> { /* private fields */ }
Expand description

A dynamic INSERT statement builder using string-based column names.

For compile-time validated queries, use Insert from builder::typed.

Source§
Source

Creates a new INSERT builder.

Source§
Source

Specifies the table to insert into.

Source§
Source

Specifies the columns to insert into.

Source§
Source

Adds a row of values to insert.

Source

Adds multiple rows of values to insert.

Source§
Source

Adds another row of values.

Source

Builds the INSERT statement and returns SQL with parameters.

Source

Builds the INSERT statement and returns only the SQL string.

Warning: Parameters are NOT inlined. Use build() to get parameters.