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.
Values
- insertValues → const MssqlCreateManyStrategy
-
Multi-row
INSERT … VALUES/MERGE, batched under the 1000-row and 2100-parameter ceilings. Defaults stayDEFAULT; identity can come back mapped to the input order.Named
insertValuesrather thanvaluesbecause Dart enums already expose.values. - bulkCopy → const MssqlCreateManyStrategy
-
Native BCP. No OUTPUT, no
DEFAULTkeyword, trigger/CHECK behaviour fromMssqlBulkOptions. 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.