MssqlCreateManyStrategy enum

How MssqlBulkWriter.createMany sends rows.

Chosen by the caller. VALUES and BCP disagree about triggers, CHECKs, defaults, nulls and identity readback; silently switching would hide that.

Inheritance
Available extensions

Values

insertValues → const MssqlCreateManyStrategy

Multi-row INSERT … VALUES / MERGE, batched under the 1000-row and 2100-parameter ceilings. Defaults stay DEFAULT; identity can come back mapped to the input order.

Named insertValues rather than values because Dart enums already expose .values.

bulkCopy → const MssqlCreateManyStrategy

Native BCP. No OUTPUT, no DEFAULT keyword, trigger/CHECK behaviour from MssqlBulkOptions. Mapped readback is refused.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Constants

values → const List<MssqlCreateManyStrategy>
A constant List of the values in this enum, in order of their declaration.