SqlCompareOptions Enum

Definition

Specifies the compare option values for a SqlString structure.

This enumeration supports a bitwise combination of its member values.

public enum class SqlCompareOptions
[System.Flags]
public enum SqlCompareOptions
[System.Flags]
[System.Serializable]
public enum SqlCompareOptions
[<System.Flags>]
type SqlCompareOptions = 
[<System.Flags>]
[<System.Serializable>]
type SqlCompareOptions = 
Public Enum SqlCompareOptions
Inheritance
SqlCompareOptions
Attributes

Fields

BinarySort 32768

Specifies that sorts should be based on a characters numeric value instead of its alphabetical value.

BinarySort2 16384

Performs a binary sort.

IgnoreCase 1

Specifies that SqlString comparisons must ignore case.

IgnoreKanaType 8

Specifies that SqlString comparisons must ignore the Kana type. Kana type refers to Japanese hiragana and katakana characters that represent phonetic sounds in the Japanese language. Hiragana is used for native Japanese expressions and words, while katakana is used for words borrowed from other languages, such as "computer" or "Internet". A phonetic sound can be expressed in both hiragana and katakana. If this value is selected, the hiragana character for one sound is considered equal to the katakana character for the same sound.

IgnoreNonSpace 2

Specifies that SqlString comparisons must ignore nonspace combining characters, such as diacritics. The Unicode Standard defines combining characters as characters that are combined with base characters to produce a new character. Non-space combining characters do not use character space by themselves when rendered. For more information about non-space combining characters, see the Unicode Standard at https://www.unicode.org.

IgnoreWidth 16

Specifies that SqlString comparisons must ignore the character width. For example, Japanese katakana characters can be written as full-width or half-width and, if this value is selected, the katakana characters written as full-width are considered equal to the same characters written in half-width.

None 0

Specifies the default option settings for SqlString comparisons.

Applies to