SqlOutParamDetails¶
-
class
oci.stack_monitoring.models.
SqlOutParamDetails
(**kwargs)¶ Bases:
object
Position and SQL Type of PL/SQL OUT parameter
Attributes
OUT_PARAM_TYPE_ARRAY
A constant which can be used with the out_param_type property of a SqlOutParamDetails. OUT_PARAM_TYPE_SQL_CURSOR
A constant which can be used with the out_param_type property of a SqlOutParamDetails. out_param_position
[Required] Gets the out_param_position of this SqlOutParamDetails. out_param_type
[Required] Gets the out_param_type of this SqlOutParamDetails. Methods
__init__
(**kwargs)Initializes a new SqlOutParamDetails object with values from keyword arguments. -
OUT_PARAM_TYPE_ARRAY
= 'ARRAY'¶ A constant which can be used with the out_param_type property of a SqlOutParamDetails. This constant has a value of “ARRAY”
-
OUT_PARAM_TYPE_SQL_CURSOR
= 'SQL_CURSOR'¶ A constant which can be used with the out_param_type property of a SqlOutParamDetails. This constant has a value of “SQL_CURSOR”
-
__init__
(**kwargs)¶ Initializes a new SqlOutParamDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - out_param_position (int) – The value to assign to the out_param_position property of this SqlOutParamDetails.
- out_param_type (str) – The value to assign to the out_param_type property of this SqlOutParamDetails. Allowed values for this property are: “SQL_CURSOR”, “ARRAY”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
out_param_position
¶ [Required] Gets the out_param_position of this SqlOutParamDetails. Position of PL/SQL procedure OUT parameter
Returns: The out_param_position of this SqlOutParamDetails. Return type: int
-
out_param_type
¶ [Required] Gets the out_param_type of this SqlOutParamDetails. SQL Type of PL/SQL procedure OUT parameter
Allowed values for this property are: “SQL_CURSOR”, “ARRAY”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The out_param_type of this SqlOutParamDetails. Return type: str
-