Propriedade do RDL AnsiNullsStatus
Obtém o valor da propriedade Boolean que especifica se a manipulação de ISO NULL está habilitada na função definida pelo usuário.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase Or SfcPropertyFlags.Design)> _
Public Property AnsiNullsStatus As Boolean
Get
Set
'Uso
Dim instance As UserDefinedFunction
Dim value As Boolean
value = instance.AnsiNullsStatus
instance.AnsiNullsStatus = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)]
public bool AnsiNullsStatus { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase|SfcPropertyFlags::Design)]
public:
property bool AnsiNullsStatus {
bool get ();
void set (bool value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)>]
member AnsiNullsStatus : bool with get, set
function get AnsiNullsStatus () : boolean
function set AnsiNullsStatus (value : boolean)
Valor da propriedade
Tipo: System. . :: . .Boolean
Um valor Boolean que especifica se a manipulação de ISO NULL está habilitada ou não.
Se o valor for True, as comparações com valores null serão iguais a False.
Se o valor for False (padrão), as comparações com valores null serão iguais a True.
Comentários
This property specifies whether any comparison to a null value equates to a NULL value. For example, A SELECT statement using WHERE column_name <> NULL returns zero rows even if there are non-null values in column_name.
Consulte também