Click or drag to resize
SqlOperationTypeEnum Enumeration
Enumeration of the SQL operations.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 9.0.0
Syntax
C#
public enum SqlOperationTypeEnum
Members
  Member nameValueDescription
UnknownQuery0 Uknown query.
SelectQuery1 Selection query.
InsertQuery2 Insertion query.
UpdateQuery3 Update query.
DeleteQuery4 Delete query.
SelectAll7 Selection all query.
DeleteAll10 Deletion all query.
SelectModifiedFrom11 Selection query from specified date of modification.
InsertWithIdentity14 Insert record with the identity column.
UpdateAll15 Updates multiple items based on the columns and where condition.
GeneralSelect16 General select query
GeneralInsert17 General insert query
GeneralUpdate18 General update query
GeneralDelete19 General delete query
GeneralUpsert20 General upsert (insert/update) query
See Also