2.325.3 DataSet.CaseSensitivity

The DataSet.CaseSensitivity element specifies whether data in a DataSet is case-sensitive. This element is optional. If this element is present, its value MUST be one of the following:

Auto (default): The case-sensitivity setting is autoderived by querying the data provider. If the data provider does not support autoderivation, the value is interpreted as false.

True: Data in the dataset is case-sensitive.

False: Data in the dataset is case-insensitive.

If the DataSet.CaseSensitivity element is not present, its value is interpreted as "Auto".

Following is the parent element of the DataSet.CaseSensitivity element.

Parent elements

DataSet

The following is the XML Schema definition of the DataSet.CaseSensitivity element.

 <xsd:element name="CaseSensitivity" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="True" />
       <xsd:enumeration value="False" />
       <xsd:enumeration value="Auto" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>