Enum SpannerCommandType (4.0.0)

public enum SpannerCommandType

Indicates the type of SpannerCommand that will be executed.

Namespace

Google.Cloud.Spanner.Data

Assembly

Google.Cloud.Spanner.Data.dll

Fields

NameDescription
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.