Table of Contents

Enum QueryType

Namespace
Cuemon.Data
Assembly
Cuemon.Data.dll

Identifies the type of data operation performed by a query against a data source.

public enum QueryType

Fields

Delete = 3

Indicates that a query is used for a data operation that deletes data.

Exists = 4

Indicates that a query is specifically used for a lookup on whether a data record exists.

Insert = 2

Indicates that a query is used for a data operation that inserts data.

Select = 0

Indicates that a query is used for a data operation that retrieves data.

Update = 1

Indicates that a query is used for a data operation that updates data.