SqlInsert class

Implemented types

Constructors

SqlInsert({SqliteOnConflict? or, required bool into, required ObjectName tableName, required List<Ident> columns, required bool overwrite, required SqlQuery source, List<Expr>? partitioned, required List<Ident> afterColumns, required bool table, OnInsert? on_, List<SelectItem>? returning})
https://docs.rs/sqlparser/0.35.0/sqlparser/ast/enum.Statement.html#variant.Insert
const
SqlInsert.fromJson(Object? json_)
Returns a new instance from a JSON value. May throw if the value does not have the expected structure.
factory

Properties

afterColumns List<Ident>
final
columns List<Ident>
final
hashCode int
The hash code for this object.
no setteroverride
into bool
final
on_ OnInsert?
final
or SqliteOnConflict?
final
overwrite bool
final
partitioned List<Expr>?
final
returning List<SelectItem>?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
source SqlQuery
final
table bool
final
tableName ObjectName
final

Methods

copyWith({Option<SqliteOnConflict>? or, bool? into, ObjectName? tableName, List<Ident>? columns, bool? overwrite, SqlQuery? source, Option<List<Expr>>? partitioned, List<Ident>? afterColumns, bool? table, Option<OnInsert>? on_, Option<List<SelectItem>>? returning}) SqlInsert
Returns a new instance by overriding the values passed as arguments
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object?>
Returns a JSON representation of this.
override
toString() String
A string representation of this object.
override
toWasm() List<Object?>
Returns this as a WASM canonical abi value.
override

Operators

operator ==(Object other) bool
The equality operator.
override