0% found this document useful (0 votes)
554 views2 pages

XML Hierarchical Data Model Notes

The XML Hierarchical Data Model organizes data in a tree-like structure using XML, featuring a parent-child relationship and tags for data storage. It is useful for its readability, sharing capabilities, and support in various applications such as web services and mobile apps. The model is commonly used in web services, mobile applications, office files, and configuration files.

Uploaded by

thiraisheditzzz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
554 views2 pages

XML Hierarchical Data Model Notes

The XML Hierarchical Data Model organizes data in a tree-like structure using XML, featuring a parent-child relationship and tags for data storage. It is useful for its readability, sharing capabilities, and support in various applications such as web services and mobile apps. The model is commonly used in web services, mobile applications, office files, and configuration files.

Uploaded by

thiraisheditzzz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

XML Hierarchical Data Model - Simple Explanation

What is it?

The XML Hierarchical Data Model is a way to store and organize data in a tree-like structure using XML

(eXtensible Markup Language).

Key Points:

- Tree Structure: Data is arranged like a tree (root -> branches -> leaves).

- Parent-Child Relationship: One element can have other elements inside it.

- Tags: Data is stored using tags like <student>, </student>.

- Root Element: One single top-level element in every XML file.

Example:

<school>

<student>

<name>Alice</name>

<roll>101</roll>

</student>

<student>

<name>Bob</name>

<roll>102</roll>

</student>

</school>

Why it is useful?

- Easy to read and share data.

- Used in web apps, mobile apps, and databases.

- Can be queried using XPath and XQuery.

- Supported by many advanced databases.

Where it is used?
XML Hierarchical Data Model - Simple Explanation

- Web services (SOAP)

- Mobile apps (Android XML)

- Office files (Word, Excel)

- Configuration files

You might also like