Class ProcedureParameter
A parameter used in a procedure
Inheritance
object
ProcedureParameter
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.ControlFlow
Assembly: ETLBox.dll
Syntax
public class ProcedureParameter
Constructors
ProcedureParameter()
Declaration
public ProcedureParameter()
ProcedureParameter(string, string, string)
Declaration
public ProcedureParameter(string name, string dataType, string defaultValue)
Parameters
Type | Name | Description |
---|---|---|
string | name | |
string | dataType | |
string | defaultValue |
ProcedureParameter(string, string)
Declaration
public ProcedureParameter(string name, string dataType)
Parameters
Type | Name | Description |
---|---|---|
string | name | |
string | dataType |
Properties
DataType
Sql data type of the procedure parameter
Declaration
public string DataType { get; set; }
Property Value
Type | Description |
---|---|
string |
DefaultValue
The default value of the parameter
Declaration
public string DefaultValue { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Name of the procedure parameter
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Out
Indicates that the parameter is used as output
Declaration
public bool Out { get; set; }
Property Value
Type | Description |
---|---|
bool |
ReadOnly
Indicates that the parameter is read only
Declaration
public bool ReadOnly { get; set; }
Property Value
Type | Description |
---|---|
bool |