AnsiPadding 속성
Gets or sets a Boolean property that specifies whether the generated script contains the Transact-SQL statements SET ANSI-PADDING ON and SET ANSI-PADDING OFF before and after the CREATE TABLE statement, respectively.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo.dll의 Microsoft.SqlServer.Smo
구문
‘선언
Public Property AnsiPadding As Boolean
Get
Set
‘사용 방법
Dim instance As ScriptingOptions
Dim value As Boolean
value = instance.AnsiPadding
instance.AnsiPadding = value
public bool AnsiPadding { get; set; }
public:
property bool AnsiPadding {
bool get ();
void set (bool value);
}
member AnsiPadding : bool with get, set
function get AnsiPadding () : boolean
function set AnsiPadding (value : boolean)
속성 값
형식: System. . :: . .Boolean
A Boolean value that specifies whether the ANSI padding statements are included in the generated script.
If True, the generated script contains the Transact-SQL statements SET ANSI-PADDING ON and SET ANSI-PADDING OFF before and after the CREATE TABLE statement respectively. Otherwise, False (default).