Module ncache.client.enum.OracleCommandType
Expand source code
from enum import Enum
class OracleCommandType(Enum):
"""
Describes the type of the Oracle command passed to the OracleDependency.
"""
TEXT = 1
"""
SQL statement to execute against the database.
"""
STORED_PROCEDURE = 2
"""
When the CommandType property is set to StoredProcedure, the CommandText property should be set to the name of
the stored procedure.
"""
Classes
class OracleCommandType (value, names=None, *, module=None, qualname=None, type=None, start=1)
-
Describes the type of the Oracle command passed to the OracleDependency.
Expand source code
class OracleCommandType(Enum): """ Describes the type of the Oracle command passed to the OracleDependency. """ TEXT = 1 """ SQL statement to execute against the database. """ STORED_PROCEDURE = 2 """ When the CommandType property is set to StoredProcedure, the CommandText property should be set to the name of the stored procedure. """
Ancestors
- enum.Enum
Class variables
var STORED_PROCEDURE
-
When the CommandType property is set to StoredProcedure, the CommandText property should be set to the name of the stored procedure.
var TEXT
-
SQL statement to execute against the database.