Свойство Database.AnsiWarningsEnabled
Gets or sets a value that specifies whether the ANSI_WARNINGS_ENABLED database option is active.
Пространство имен: 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 AnsiWarningsEnabled As Boolean
Get
Set
'Применение
Dim instance As Database
Dim value As Boolean
value = instance.AnsiWarningsEnabled
instance.AnsiWarningsEnabled = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)]
public bool AnsiWarningsEnabled { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase|SfcPropertyFlags::Design)]
public:
virtual property bool AnsiWarningsEnabled {
bool get () sealed;
void set (bool value) sealed;
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)>]
abstract AnsiWarningsEnabled : bool with get, set
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)>]
override AnsiWarningsEnabled : bool with get, set
final function get AnsiWarningsEnabled () : boolean
final function set AnsiWarningsEnabled (value : boolean)
Значение свойства
Тип: System.Boolean
A Boolean value that specifies whether the AnsiWarningsEnabled database option is active. If True, warnings are issued when null values are encountered in a statement. If False (default), warnings are not issued when null values are encountered in statements.
Реализует
IDatabaseOptions.AnsiWarningsEnabled