私は Delphi を初めて使用しますが、これが私がやりたいことです。私はこのようにフォーマットされたXMLファイルを持っています、
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Row>
<Designation>1234102</Designation>
<Inner>5.412</Inner>
<Outer>3.588</Outer>
<Spin>4.732</Spin>
<Cage>0.399</Cage>
</Row>
<Row>
<Designation>1342153</Designation>
<Inner>5.916</Inner>
<Outer>4.084</Outer>
<Spin>5.277</Spin>
<Cage>0.408</Cage>
</Row>
........
</Data>
Delphiでクエリしたい。例: 1342153 の場所のデータが必要です。最も簡単な解決策は何ですか?
例と説明を事前に感謝します。