CaseSensitive property

Specifies whether the new database should be case sensitive when comparing string values.

Syntax
Visual Basic
Public Property CaseSensitive As Boolean
C#
public bool CaseSensitive { get; set; }
Property value

True if the database should be case sensitive, false if the database should be case insensitive. The default is false.

Remarks

CaseSensitive only affects how string data is compared and sorted. Database identifiers such as table names, column names, index names, and connection user IDs are always case insensitive. Connection passwords and database encryption keys are always case sensitive.

See also