3.1.4.1.3.2 Collation

Namespace: http://schemas.microsoft.com/office/Access/2010/11/Server/WebServices/ServerDesignService

Specifies collation information.

 <xs:complexType name="Collation" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:attribute name="Culture" type="xs:string"/>
   <xs:attribute name="CaseSensitive" type="xs:boolean"/>
   <xs:attribute name="AccentSensitive" type="xs:boolean"/>
   <xs:attribute name="KanaSensitive" type="xs:boolean"/>
   <xs:attribute name="WidthSensitive" type="xs:boolean"/>
   <xs:attribute name="UseSupplementaryCharacters" type="xs:boolean" use="required"/>
 </xs:complexType>

Culture: A string ([XMLSCHEMA2] section 3.2.1) that specifies the culture name of the collation. MUST be formatted as specified by [RFC4646]. MUST be present.

CaseSensitive: A boolean ([XMLSCHEMA2] section 3.2.2) that specifies whether the collation distinguishes between uppercase and lowercase letters. If omitted, the protocol server uses a default selection based on the Culture attribute.

AccentSensitive: A boolean ([XMLSCHEMA2] section 3.2.2) that specifies whether the collation distinguishes between characters with accents and those without. If omitted, the protocol server uses a default selection based on the Culture attribute.

KanaSensitive: A boolean ([XMLSCHEMA2] section 3.2.2) that specifies whether the collation distinguishes between the two types of Japanese kana characters: hiragana and katakana. If omitted, the protocol server uses a default selection based on the Culture attribute.

WidthSensitive: A boolean ([XMLSCHEMA2] section 3.2.2) that specifies whether the collation distinguishes between single-byte characters and the same characters when they are represented as double-byte characters. If omitted, the protocol server uses a default selection based on the Culture attribute.

UseSupplementaryCharacters: A boolean ([XMLSCHEMA2] section 3.2.2) that specifies whether the collation uses surrogate pairs.