IsCursorParameter 속성

Gets or sets the Boolean property that specifies whether the parameter is a cursor parameter.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase Or SfcPropertyFlags.Design)> _
Public Property IsCursorParameter As Boolean
    Get
    Set
‘사용 방법
Dim instance As StoredProcedureParameter
Dim value As Boolean

value = instance.IsCursorParameter

instance.IsCursorParameter = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)]
public bool IsCursorParameter { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase|SfcPropertyFlags::Design)]
public:
property bool IsCursorParameter {
    bool get ();
    void set (bool value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)>]
member IsCursorParameter : bool with get, set
function get IsCursorParameter () : boolean
function set IsCursorParameter (value : boolean)

속성 값

유형: System. . :: . .Boolean
A Boolean value that specifies whether the stored procedure parameter is an cursor parameter.
If True, the referenced stored procedure parameter is a cursor parameter.
If False (default), the referenced stored procedure parameter is not a cursor parameter.

주의

For more information about how to use cursor parameters, see OUTPUT 매개 변수에 cursor 데이터 형식 사용.