CaseSensitive プロパティ
大文字と小文字を区別せずに評価するかどうかを指定する Boolean プロパティ値を取得します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
<SfcPropertyAttribute> _
Public ReadOnly Property CaseSensitive As Boolean
Get
'使用
Dim instance As Database
Dim value As Boolean
value = instance.CaseSensitive
[SfcPropertyAttribute]
public bool CaseSensitive { get; }
[SfcPropertyAttribute]
public:
property bool CaseSensitive {
bool get ();
}
[<SfcPropertyAttribute>]
member CaseSensitive : bool
function get CaseSensitive () : boolean
プロパティ値
型: System. . :: . .Boolean
大文字と小文字を区別せずに評価するかどうかを指定する Boolean 値です。
True の場合、大文字と小文字が区別されます。False (既定値) の場合、大文字と小文字は区別されません。
説明
このプロパティは、データベースに関連付けられている照合順序で大文字と小文字を区別するかどうかを指定します。
使用例
CaseSensitive プロパティは、次のコードで True または False を返す Boolean プロパティです。
'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 case sensitivity of the database.
Console.WriteLine("The database is case sensitive = " + _
db.CaseSensitive.ToString)