InsertStmt constructor
InsertStmt(
- String table,
- List<
String> ? columns, - List<
List< ? rows, {Expr> > - InsertMode mode = InsertMode.normal,
- SelectStmt? select,
- List<
SelectItem> ? returning, - Map<
String, SelectStmt> ctes = const {}, - Map<
String, List< cteColumns = const {},String> > - bool ctesRecursive = false,
- OnConflictClause? onConflict,
Implementation
InsertStmt(
this.table,
this.columns,
this.rows, {
this.mode = InsertMode.normal,
this.select,
this.returning,
this.ctes = const {},
this.cteColumns = const {},
this.ctesRecursive = false,
this.onConflict,
});