Delphi and XQuery / XPath 2.0?

How do people use XQuery and / or XPath 2.0 from Delphi? I have MSXML v6.0 working with Delphi, so any documented COM implementation will work. What is your favorite?

+3
source share
3 answers

My favorite: I always found that MSXML import provides excellent support for all XPath requests; I never needed it for this.

Close the second: I do not know any native delphi libraries that can correspond to the depth of MSXML functions, however OmniXML provides excellent support for basic XPath queries and if you do not use expressions, for example, then this is a pretty good alternative.

Unfortunately, I do not think that there are currently native Delphi XML libraries that fully support XPath 2.0.

+4
source

You can use the library of fast and open sources libxml2 . There is a Sourceforge Project for free Delphi bindings.

+1
source

OmniXML. , . SimpleStorage, XML.

0

Source: https://habr.com/ru/post/1720153/


All Articles