Struct InsertStatement
pub struct InsertStatement {
pub schema: Option<String>,
pub table: String,
pub columns: Vec<String>,
pub values: InsertSource,
pub on_conflict: Option<OnConflict>,
}Expand description
An INSERT statement.
Schema name.
Table name.
§columns: Vec<String>Column names (optional).
Values to insert.
ON CONFLICT clause (for UPSERT).