I`m using Delphi 2009 and want to operate some XML data. I heard that nativeXML is one of the most convenient ways to do it. so how can I install this library?
how to install nativeXML using Delphi 2009?
2.4k Views Asked by chester89 At
2
There are 2 best solutions below
3
JosephStyons
On
Based on their web site, it sounds like you just download the .dcu file, put it in a convenient directory, and add that directory to your type library path (tools->options->library path).
After that, just add the unit to your uses clause and you should be good to go.
Related Questions in XML
- Impose component restriction to a series of parsys-CQ
- Wrong xml being inflated android
- Shorten the XSD
- Writing/Overwriting to specific XML file from ASP.NET code behind
- Magento custom block. Can't get block's file
- Layout not shifting up when keyboard is open
- CSV to XML XSLT: How to quote excape
- Getting deeply embedded XML element values
- Saving FileSystemInfo Array to File
- how to apply templates within xsl:for-each
- Spring - configure Jboss Intros for xml with java config?
- Problems with implementing custom actionbar android
- Can Apache Ant be told to cache its XML files?
- Is Log4j2 xml configuration case sensitive?
- How to get a specific node value in XML Pull Parser
Related Questions in DELPHI
- How to not load all database records in my TListbox in Firemonkey Delphi XE8
- How to catch WM_DEVICECHANGE in a control other than TForm?
- show information with Rolling / moving messages delphi xe7
- What is the different between "Console target" and "GUI target" in DCC32 option?
- How to add new online ressources to RAD Studio help system
- C# and Delphi code have different behaviour when importing unmanaged dll
- Loop through records on a cxgrid and update a field/column
- Delphi 7 - Save to a Specific .INI Files Name
- TImagelist for large images
- how to modify a function so it returns an array of strings
- Checking for internet connection in runtime
- How can I make the main form align correctly after my control height is autosized and then I maximize the form?
- fetch data from web service to dataset in Delphi
- Load candlestick data from file
- Infinite loop in parsing a string using pointer math
Related Questions in DELPHI-2009
- How to catch WM_DEVICECHANGE in a control other than TForm?
- How can I make the main form align correctly after my control height is autosized and then I maximize the form?
- When I load a new image in a TBitmap I must destroy the existing one first?
- It is required to free the IShellFolder interface returned by SHGetDesktopFolder ? and how?
- How to make my custom control be notified when his form or application receives and loses focus?
- How to adjust hint properties of a control at runtime?
- How to change HINT font size of my custom control ?
- Why I don't receive messages in my control when I use "message" directive?
- Is FormatDateTime thread safe when using the same copy of TFormatSettings across multiple threads?
- Floating point number conversion horror, is there a way out?
- Detect when user locks/unlocks screen in Windows 7 with Delphi
- Delphi 2009 - Bug? Adding supposedly invalid values to a set
- Easiest way to compose Outlook 2010 mail from Delphi?
- Recognizing text from a picture in delphi
- saving tcp data into a table database
Related Questions in NATIVEXML
- going through a XML file with Delphi and NativeXML:
- How to find node using NativeXml : Delphi
- delphi nativexml multi level xml structure
- How to deal with Sedna via PHP
- How to create xml based on this xsd?
- NativeXml and threading
- NativeXML - Create processing instructions (xml-stylesheet)
- Delphi - Can I create canonical XML with NativeXml?
- Create data in xml from txt file
- How can I find if a subnode exists
- Delphi - Iterating through an XML dataset with NativeXML
- With latest NativeXml (v4.03 svn), is it possible to get the element's value with the preceding and trailing blanks without checking type iteratively?
- How do I iterate through similar nodes in an XML document using NativeXML in Delphi?
- uniqness insertion in native xml database
- Section name with multiple words in TNativeXML
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
NativeXML doesn't claim to support Delphi 2009 just yet. [Edit: Apparently there is a 2009 beta available to paying customers.] The trial version does not, so it cannot work with Delphi 2009 until that version of Delphi is officially supported.
That said, using XML in Delphi for most purposes doesn't require third-party components. You have several options, depending upon what you're doing.
The most straightforward is to use TXMLDocument. This lets you open an XML file or stream, and access nodes using a DOM.
With the Enterprise version of Delphi, you get the XML data binding wizard. This generates strongly typed mapping classes for a certain XML schema. It's very convenient when you know exactly what the structure of the XML document you're parsing will be.
A third option is the XML mapper, which allows you to read XML data to and from a TClientDataset.