Esql, как использовать оператор выбора, чтобы получить значение из входного XML
У меня есть входной XML, который выглядит примерно так
<log>
<line>
<id>1</id>
<line>
<id>2</id>
<otherLine>
<id>2</id>
<field>
12345-67
</field>
</otherLine>
</log>
То, что я делаю в esql, в основном повторяется над каждым <line>
элемент, и я хочу получить значение из <otherLine>
где <id>
значения совпадают.
У меня есть такой код:
declare inDoc reference to InputRoot.XMLNSC.log;
declare line reference to inDoc;
declare fieldValue character;
move line firstchild name 'line';
while lastmove(line) do
set fieldValue = select r.field from inDoc.otherLine[] as r where r.id = line.id;
-- I want this to be null when hitting the line with <id>1</id> and 12345-67 and hitting the line with <id>2</id>
move line nextsibling name 'line';
end while
Я получаю следующую ошибку при попытке развернуть код:
BIP2497E: (MyApp_flow.Main, <line number of select statement>) : Illegal data type for target. A list field reference is required.
The expression supplying the target must evaluate to a value of a suitable type. The given expression cannot possibly do so.
Correct the syntax of your ESQL expression in node 'MyApp_flow.Main', around line and column '<line number of the select statement>', then redeploy the message flow.
Мне интересно, какой правильный способ сделать это в esql будет
Спасибо
1 ответ
Решение
Решение заключается в использовании the
,item
, а также fieldvalue
в утверждении выбора, как это
set fieldValue = the(select item fieldvalue(r.field) from inDoc.otherLine[] as r where r.id = line.id);