Condividi tramite


Proprietà CaseSensitive

Ottiene un valore della proprietà Boolean che specifica se le lettere maiuscole e minuscole vengono valutate come uguali.

Spazio dei nomi  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Sintassi

'Dichiarazione
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Expensive Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase)> _
Public ReadOnly Property CaseSensitive As Boolean
    Get
'Utilizzo
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

Valore proprietà

Tipo: System. . :: . .Boolean
Valore Boolean che specifica se le lettere maiuscole e minuscole vengono valutate come uguali.
Se True, maiuscole e minuscole non vengono valutate come uguali. In caso contrario, False (impostazione predefinita).

Osservazioni

This property specifies whether the collation associated with the database is case sensitive.

Esempi

The CaseSensitive property is a Boolean property that will return True or False in the following code:

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