Google.Cloud.Spanner.Data - Enum SpannerCommandType (4.3.0)

public enum SpannerCommandType

Reference documentation and code samples for the Google.Cloud.Spanner.Data enum SpannerCommandType.

Indicates the type of SpannerCommand that will be executed.

Namespace

GoogleCloudGoogle.Cloud.SpannerData

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.