Enum SpannerCommandType
Indicates the type of SpannerCommand that will be executed.
Namespace: Google.Cloud.Spanner.Data
Assembly: Google.Cloud.Spanner.Data.dll
Syntax
public enum SpannerCommandType
Fields
Name | Description |
---|---|
Ddl | A DDL statement (e.g. a statement to create or modify table schema). |
Delete | Deletes rows from a table. |
Dml | A general DML statement, which may use queries to update some values based on others. |
Insert | Inserts rows into a table. |
InsertOrUpdate | Inserts or updates rows in a table. |
Read | Reads rows from a table |
Select | A SQL Query. |
Update | Updates rows in a table. |