ITableParameter Interface

Represents a parameter of table type.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Interface ITableParameter _
    Inherits ITableVariable, ITabular, IParameter, ILocalVariable,  _
    IMetadataObject
'Usage
Dim instance As ITableParameter
public interface ITableParameter : ITableVariable, 
    ITabular, IParameter, ILocalVariable, IMetadataObject
public interface class ITableParameter : ITableVariable, 
    ITabular, IParameter, ILocalVariable, IMetadataObject
type ITableParameter =  
    interface 
        interface ITableVariable 
        interface ITabular 
        interface IParameter 
        interface ILocalVariable 
        interface IMetadataObject 
    end
public interface ITableParameter extends ITableVariable, ITabular, IParameter, ILocalVariable, IMetadataObject

The ITableParameter type exposes the following members.

Properties

  Name Description
Public property Columns Gets the collection of columns that belong to this object. (Inherited from ITabular.)
Public property DataType Gets an object that represents the data type of the table variable. (Inherited from ITableVariable.)
Public property DefaultValue Gets the default value of the parameter. (Inherited from IParameter.)
Public property IsCursorVariable Gets a value that indicates whether this is a cursor variable. (Inherited from ILocalVariable.)
Public property IsOutput Gets a value that indicates whether the parameter is an output parameter. (Inherited from IParameter.)
Public property IsParameter Gets a value that indicates whether this is a parameter. (Inherited from ILocalVariable.)
Public property IsReadOnly Gets a value that indicates that this parameter is read-only. (Inherited from IParameter.)
Public property IsScalarVariable Gets a value that indicates whether this is a scalar variable. (Inherited from ILocalVariable.)
Public property IsTableVariable Gets a value that indicates whether this is a table variable. (Inherited from ILocalVariable.)
Public property Name Gets the name of the metadata object. (Inherited from IMetadataObject.)
Public property TabularType Gets the tabular type. (Inherited from ITabular.)
Public property Unaliased Gets the ITabular object that this object is an alias for. (Inherited from ITabular.)

Top

Methods

  Name Description
Public method Accept<T> Accepts a visit from the specified IMetadataObjectVisitor<T> object. (Inherited from IMetadataObject.)

Top

See Also

Reference

Microsoft.SqlServer.Management.SqlParser.Metadata Namespace