CommandType enum
All sql commands.
Constructors
- CommandType()
-
const
Values
- insert → const CommandType
-
insert.
- delete → const CommandType
-
delete.
- update → const CommandType
-
update.
- select → const CommandType
-
select.
- move → const CommandType
-
move.
- fetch → const CommandType
-
fetch.
- copy → const CommandType
-
copy.
Properties
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
Static Methods
-
parse(
String string) → CommandType - Parses a string containing an CommandType literal into its instance.
Constants
-
values
→ const List<
CommandType> -
A constant List of the values in this enum, in order of their declaration.
[insert, delete, update, select, move, fetch, copy]