public enum SpannerCommandTypeReference documentation and code samples for the Google.Cloud.Spanner.Data enum SpannerCommandType.
Indicates the type of SpannerCommand that will be executed.
Namespace
Google.Cloud.Spanner.DataAssembly
Google.Cloud.Spanner.Data.dll
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. |