Поделиться через


Свойство StoredProcedureParameter.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 Using the cursor Data Type in an OUTPUT Parameter.

См. также

Справочник

StoredProcedureParameter Класс

Пространство имен Microsoft.SqlServer.Management.Smo

Другие ресурсы

Using the cursor Data Type in an OUTPUT Parameter