ICursorParameter Interface
Represents a parameter of a cursor type.
Namespace: Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly: Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)
Syntax
'Declaration
Public Interface ICursorParameter _
Inherits ICursorVariable, IParameter, ILocalVariable, IMetadataObject
'Usage
Dim instance As ICursorParameter
public interface ICursorParameter : ICursorVariable,
IParameter, ILocalVariable, IMetadataObject
public interface class ICursorParameter : ICursorVariable,
IParameter, ILocalVariable, IMetadataObject
type ICursorParameter =
interface
interface ICursorVariable
interface IParameter
interface ILocalVariable
interface IMetadataObject
end
public interface ICursorParameter extends ICursorVariable, IParameter, ILocalVariable, IMetadataObject
The ICursorParameter type exposes the following members.
Properties
Name | Description | |
---|---|---|
DataType | Gets the local variable data type. (Inherited from ICursorVariable.) | |
DataType | Gets the local variable data type. (Inherited from ILocalVariable.) | |
DefaultValue | Gets the default value of the parameter. (Inherited from IParameter.) | |
IsCursorVariable | Gets a value that indicates whether this is a cursor variable. (Inherited from ILocalVariable.) | |
IsOutput | Gets a value that indicates whether the parameter is an output parameter. (Inherited from IParameter.) | |
IsParameter | Gets a value that indicates whether this is a parameter. (Inherited from ILocalVariable.) | |
IsReadOnly | Gets a value that indicates that this parameter is read-only. (Inherited from IParameter.) | |
IsScalarVariable | Gets a value that indicates whether this is a scalar variable. (Inherited from ILocalVariable.) | |
IsTableVariable | Gets a value that indicates whether this is a table variable. (Inherited from ILocalVariable.) | |
Name | Gets the name of the metadata object. (Inherited from IMetadataObject.) |
Top
Methods
Name | Description | |
---|---|---|
Accept<T> | Accepts a visit from the specified IMetadataObjectVisitor<T> object. (Inherited from IMetadataObject.) |
Top