What is XQuery data type in XML

In this article,we are going to explain XQuery data type.
  • 1877
XQuery Data Type

XQuery data type is given below; it also used in XML. The XML data type allows up to 2GB storage of XML documents or fragments.

  • XSD String data type contain character string.

Example of  XSD string data type

<xs:element name="XYZ" type="xs:string"/>

  • XSD Date and Time data type represents calendar date,time.

Example of  XSD Date  data type

<xs:element name="XYZ" type="xs:date"/>
  • XSD Numeric data type contain  numeric value.

Example of  XSD Numeric data type

<xs:element name="XYZ" type="xs:integer"/>
  • XSD Mise  contain miscellaneous data type.

Example of  XSD Mise data type

<xs:element name="XYZ" type="xs:boolean"/>

Further Readings

You may also want to read these related articles: here
 

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.