Skip to main content

Xml Introduction

•XML stands for eXtensible Markup Language.
 • XML was designed to store and transport data.
 • XML was designed to be both human- and machine-readable
• XML is a software- and hardware-independent tool for storing and transporting data.
• XML is a markup language much like HTML
• XML was designed to store and transport data
• XML was designed to be self-descriptive
• XML is a W3C Recommendation

 Maybe it is a little hard to understand, but XML does not DO anything.
 • This note is a note to Tove from Jani, stored as XML
• The XML above is quite self-descriptive: – It has sender information. – It has receiver information – It has a heading – It has a message body





An Example of Xml Documents


Comments

Popular posts from this blog

JAVA DATABASE CONNECTIVITY

Java DataBase Connectivity JDBC stands for Java Database Connectivity. JDBC is a Java API to connect and execute the query with the database. It is a part of JavaSE (Java Standard Edition). JDBC API uses JDBC drivers to connect with the database. There are four types of JDBC drivers: o JDBC-ODBC Bridge Driver, o Native Driver, o Network Protocol Driver, and o Thin Driver We can use JDBC API to access tabular data stored in any relational database. By the help of JDBC API, we can save, update, delete and fetch data from the database. It is like Open Database Connectivity (ODBC) provided by Microsoft.                                         fig: JDBC  We can use JDBC API to handle database using Java program and can perform the following activities: 1. Connect to the database 2. Execute queries and update statements to the database 3. Retrieve the result received from th...

React Today and Tomorrow and 90% Cleaner React With Hooks