Propriété AnsiPaddingEnabled
Gets or sets a Boolean property value that specifies whether the ANSI_PADDING_ENABLED database option is active.
Espace de noms : Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Syntaxe
'Déclaration
<SfcPropertyAttribute> _
Public Property AnsiPaddingEnabled As Boolean
Get
Set
'Utilisation
Dim instance As DatabaseOptions
Dim value As Boolean
value = instance.AnsiPaddingEnabled
instance.AnsiPaddingEnabled = value
[SfcPropertyAttribute]
public bool AnsiPaddingEnabled { get; set; }
[SfcPropertyAttribute]
public:
property bool AnsiPaddingEnabled {
bool get ();
void set (bool value);
}
[<SfcPropertyAttribute>]
member AnsiPaddingEnabled : bool with get, set
function get AnsiPaddingEnabled () : boolean
function set AnsiPaddingEnabled (value : boolean)
Valeur de propriété
Type : System. . :: . .Boolean
A Boolean value that specifies whether the ANSI_PADDING_ENABLED database option is active.
If True, trailing blanks inserted into variable-length columns are not trimmed. Otherwise, False (default).
Notes
This property specifies whether trailing blanks in variable-length columns are trimmed.
Cette option peut aussi être modifiée à l'aide de l'instruction Transact-SQL ALTER DATABASE.
Voir aussi