Module ncache.client.enum.SqlDataRowVersion
Expand source code
from enum import Enum
class SqlDataRowVersion(Enum):
"""
Sets the DataRowVersion to use when you load Value.
"""
ORIGINAL = 256
"""
The row contains its original values.
"""
CURRENT = 512
"""
The row contains current values.
"""
PROPOSED = 1024
"""
The row contains a proposed value.
"""
DEFAULT = 1536
"""
The default version of System.Data.DataRowState. For a DataRowState value of Added, Modified or Deleted, the default
version is Current. For a System.Data.DataRowState value of Detached, the version is Proposed.
"""
Classes
class SqlDataRowVersion (value, names=None, *, module=None, qualname=None, type=None, start=1)
-
Sets the DataRowVersion to use when you load Value.
Expand source code
class SqlDataRowVersion(Enum): """ Sets the DataRowVersion to use when you load Value. """ ORIGINAL = 256 """ The row contains its original values. """ CURRENT = 512 """ The row contains current values. """ PROPOSED = 1024 """ The row contains a proposed value. """ DEFAULT = 1536 """ The default version of System.Data.DataRowState. For a DataRowState value of Added, Modified or Deleted, the default version is Current. For a System.Data.DataRowState value of Detached, the version is Proposed. """
Ancestors
- enum.Enum
Class variables
var CURRENT
-
The row contains current values.
var DEFAULT
-
The default version of System.Data.DataRowState. For a DataRowState value of Added, Modified or Deleted, the default version is Current. For a System.Data.DataRowState value of Detached, the version is Proposed.
var ORIGINAL
-
The row contains its original values.
var PROPOSED
-
The row contains a proposed value.