About XML and Delphi

zhaozj2021-02-16  60

There is a series of articles in http://delphi.about.com, which is about XML and Delphi,

Original link at http://delphi.about.com/library/weekly/aa072500a.htm

What is XML? XML is the 'Extensible Markup Language', universal language for data on the Web. XML gives developers the power to deliver structured data from a wide variety of applications to the desktop for local computation and presentation. XML is also an ideal format for server-to-server transfer of structured data. Using an XML parser, software is able to walk through the hierarchy of the document extracting the structure of the document, its content, or both. XML is in no way limited to Internet use . In Fact, XML's Main Streg - Organizing Information - Makes It Perfect for Exchanging Data Between Different Systems.

XML looks much like HTML. However, whereas HTML describes the layout of a page (for data displaying purposes) XML is concerned with defining and describing data, it describes the type of content. Hence, 'extensible' because it is not a fixed format like HTML. We can also think of each XML file as a mini database. Tags, or markups (the text surrounded by angle brackets) in an XML document delineate the records and fields. The text between the tags is the data. We perform operations Like Retrieving, Updating, And Inserting Data with XML Using A Parser and a set of objects exposed by the paser.

AS A Delphi Programmer, What You Need To Know Is How To Use Xml. Therefore, in This Article I'll Be Presenting Several Ways In Which XML Can Be Integrated Into Your Delphi Applications.

XMLWorks an open source project

转载请注明原文地址:https://www.9cbs.com/read-20598.html

New Post(0)