Skip to main content

ExecuteType

Categories of sql statements.

Assembly: ServiceStack.Common.dll
View Source
Declaration
public enum ExecuteType : byte

Fields

None

Unknown

View Source
Declaration
None = 0

NonQuery

DML statements that alter database state, e.g. INSERT, UPDATE

View Source
Declaration
NonQuery = 1

Scalar

Statements that return a single record

View Source
Declaration
Scalar = 2

Reader

Statements that iterate over a result set

View Source
Declaration
Reader = 3