Module ncache.client.enum.SqlCommandType
Expand source code
from enum import Enum
class SqlCommandType(Enum):
"""
Describes the type of the command passed to the SqlDependency.
"""
TEXT = 1
"""
An SQL text command. (Default.)
"""
STORED_PROCEDURE = 4
"""
The name of a stored procedure.
"""
Classes
class SqlCommandType (value, names=None, *, module=None, qualname=None, type=None, start=1)
-
Describes the type of the command passed to the SqlDependency.
Expand source code
class SqlCommandType(Enum): """ Describes the type of the command passed to the SqlDependency. """ TEXT = 1 """ An SQL text command. (Default.) """ STORED_PROCEDURE = 4 """ The name of a stored procedure. """
Ancestors
- enum.Enum
Class variables
var STORED_PROCEDURE
-
The name of a stored procedure.
var TEXT
-
An SQL text command. (Default.)