AnsiNullsStatus 속성
저장 프로시저에서 ISO NULL 처리를 사용할 수 있는지 여부를 지정하는 Boolean 속성 값을 가져옵니다.
네임스페이스: 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 AnsiNullsStatus As Boolean
Get
Set
‘사용 방법
Dim instance As StoredProcedure
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)
속성 값
유형: System. . :: . .Boolean
ISO NULL 처리를 사용할 수 있는지 여부를 지정하는 Boolean 값입니다.
True이면 Null 값과의 비교 결과가 false와 같습니다.
False(기본값)이면 Null 값과의 비교 결과가 true와 같습니다.
주의
This property specifies whether any comparison to a null value equates to a NULL value. For example, A SELECT statement that uses WHERE column_name <> NULL returns zero rows even if there are non-null values in column_name.