By default, the SQL Anywhere dbinit utility creates a case-insensitive database for the CHAR collation. This can be changed through the use of the -c command line switch on dbinit, and the setting may differ for the NCHAR collation for national character sets. Whether or not a database supports case-sensitive comparisons can be determined via the DB_Extended_property() function, for example SELECT DB_EXTENDED_PROPERTY( 'Collation', 'CaseSensitivity');

Namespace: NHibernate.Dialect
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public override bool AreStringComparisonsCaseInsensitive { get; }
Visual Basic
Public Overrides ReadOnly Property AreStringComparisonsCaseInsensitive As Boolean
	Get
Visual C++
public:
virtual property bool AreStringComparisonsCaseInsensitive {
	bool get () override;
}

See Also