Collation 속성
Gets or sets the default collation used by the database.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo.dll의 Microsoft.SqlServer.Smo
구문
‘선언
<SfcPropertyAttribute(SfcPropertyFlags.Expensive)> _
Public Property Collation As String
Get
Set
‘사용 방법
Dim instance As Database
Dim value As String
value = instance.Collation
instance.Collation = value
[SfcPropertyAttribute(SfcPropertyFlags.Expensive)]
public string Collation { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Expensive)]
public:
virtual property String^ Collation {
String^ get () sealed;
void set (String^ value) sealed;
}
[<SfcPropertyAttribute(SfcPropertyFlags.Expensive)>]
abstract Collation : string with get, set
[<SfcPropertyAttribute(SfcPropertyFlags.Expensive)>]
override Collation : string with get, set
final function get Collation () : String
final function set Collation (value : String)
속성 값
형식: System. . :: . .String
A String value that specifies the name of the collation.
구현
주의
You can find the available collation strings in SQL Server 데이터 정렬 선택, by running the EnumCollations method, or during SQL Server setup. The collation string contains information about the code page, case-sensitivity, accent sensitivity, and language or alphabet.
예제
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")
'Display the current default collation.
Console.WriteLine(db.Collation)
'Display the case-sensitivity of the current collation.
Console.WriteLine("Collation is case-sensitive = " + _
db.CaseSensitive.ToString)