ProcedureParameter Class

Definition

This class represents a parameter that can be passed into a procedure.

[System.Serializable]
public class ProcedureParameter : Microsoft.SqlServer.TransactSql.ScriptDom.DeclareVariableElement
[<System.Serializable>]
type ProcedureParameter = class
    inherit DeclareVariableElement
Public Class ProcedureParameter
Inherits DeclareVariableElement
Inheritance
Attributes

Constructors

ProcedureParameter()

Fields

Uninitialized

Constant to indicate and uninitialized token.

(Inherited from TSqlFragment)

Properties

DataType

The data type of the variable. Type table is invalid.

(Inherited from DeclareVariableElement)
FirstTokenIndex

Gets or sets the first index of the token.

(Inherited from TSqlFragment)
FragmentLength

Defines the number of characters the fragment takes up in the script it was parsed.

(Inherited from TSqlFragment)
IsVarying

Shows if VARYING is defined.

LastTokenIndex

Gets or sets the last index of the token.

(Inherited from TSqlFragment)
Modifier

Shows if OUTPUT or READONLY is defined.

Nullable

The nullable constraint, optional can be null.

(Inherited from DeclareVariableElement)
ScriptTokenStream

Gets or sets the script token stream.

(Inherited from TSqlFragment)
StartColumn

Gets the start column.

(Inherited from TSqlFragment)
StartLine

Gets the start line.

(Inherited from TSqlFragment)
StartOffset

Defines the character offset of fragments starting location in the script it was parsed.

(Inherited from TSqlFragment)
Value

Initial variable value specified in declaration.

(Inherited from DeclareVariableElement)
VariableName

The name of the variable. This includes the @ at the beginning.

(Inherited from DeclareVariableElement)

Methods

Accept(TSqlFragmentVisitor)

Accepts visitor

AcceptChildren(TSqlFragmentVisitor)

Accepts visitor for Children

Applies to