Proprietà IsCursorParameter
Gets or sets the Boolean property that specifies whether the parameter is a cursor parameter.
Spazio dei nomi Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase Or SfcPropertyFlags.Design)> _
Public Property IsCursorParameter As Boolean
Get
Set
'Utilizzo
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)
Valore proprietà
Tipo: 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.
Osservazioni
For more information about how to use cursor parameters, see Utilizzo del tipo di dati cursor in un parametro OUTPUT.
Vedere anche