Udostępnij za pośrednictwem


Właściwość Database.CaseSensitive

Pobiera Boolean wartości właściwość, który określa, czy wielkie i małe litery są oceniane jako równe.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Expensive Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase)> _
Public ReadOnly Property CaseSensitive As Boolean
    Get
'Użycie
Dim instance As Database
Dim value As Boolean

value = instance.CaseSensitive
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase)]
public bool CaseSensitive { get; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Expensive|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase)]
public:
property bool CaseSensitive {
    bool get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase)>]
member CaseSensitive : bool
function get CaseSensitive () : boolean

Wartość właściwości

Typ: System.Boolean
A Boolean wartość określająca, czy wielkie i małe litery są oceniane jako równe.
Jeśli True, wielkie i małe litery nie są oceniane jako równe.W przeciwnym razie False (domyślnie).

Uwagi

Właściwość ta określa, czy sortowanie bazy danych jest przypadek poufne.

Przykłady

CaseSensitive Właściwość jest wartość logiczna właściwość, która będzie zwracać wartość PRAWDA lub FAŁSZ w poniższym kodzie:

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks2008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2")

'Display the case sensitivity of the database.
Console.WriteLine("The database is case sensitive = " + _
db.CaseSensitive.ToString)

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
Write-Host "The database is case sensitive =" $db.CaseSensitive