Share via


Propriété IsCursorParameter

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

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase Or SfcPropertyFlags.Design)> _
Public Property IsCursorParameter As Boolean
    Get
    Set
'Utilisation
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)

Valeur de propriété

Type : 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.

Notes

For more information about how to use cursor parameters, see Utilisation du type de données cursor dans un paramètre OUTPUT.