Class ProcedureParameter

A parameter used in a procedure

Inheritance
ProcedureParameter
Namespace: ETLBox.ControlFlow
Assembly: ETLBox.dll
Syntax
    public class ProcedureParameter

Constructors

ProcedureParameter()

Declaration
    public ProcedureParameter()

ProcedureParameter(string, string)

Declaration
    public ProcedureParameter(string name, string dataType)
Parameters
TypeNameDescription
stringname
stringdataType

ProcedureParameter(string, string, string)

Declaration
    public ProcedureParameter(string name, string dataType, string defaultValue)
Parameters
TypeNameDescription
stringname
stringdataType
stringdefaultValue

Properties

DataType

Sql data type of the procedure parameter

Declaration
    public string DataType { get; set; }
Property Value
TypeDescription
string

DefaultValue

The default value of the parameter

Declaration
    public string DefaultValue { get; set; }
Property Value
TypeDescription
string

Name

Name of the procedure parameter

Declaration
    public string Name { get; set; }
Property Value
TypeDescription
string

Out

Indicates that the parameter is used as output

Declaration
    public bool Out { get; set; }
Property Value
TypeDescription
bool

ReadOnly

Indicates that the parameter is read only

Declaration
    public bool ReadOnly { get; set; }
Property Value
TypeDescription
bool