The xml is in the format of
<SQL name=”Rpt_SameRptOrder”>
<SQLCode>Rpt_SameRptOrder</SQLCode>
<DataFound>1</DataFound>
<SQLResults>
<ROW>
<COLUMN name=”Variable1″>VariableValue</COLUMN>
<COLUMN name=”Variable2″>VariableValue</COLUMN>
<COLUMN name=”Variable3″>VariableValue</COLUMN>
</ROW></SQLResults>
</SQL>
The section in Rpt_SameRptOrder can run from none (as shown below as sample)
<SQL name=”Rpt_SameRptOrder “>
<SQLCode>Rpt_Type</SQLCode>
<DataFound>0</DataFound>
<SQLResults />
</SQL>
to single or multiple row(s) depending on the data provided by the DB query – sample of multiple rows are as follows:-
<SQL name=”Rpt_SameRptOrder”>
<SQLCode>Rpt_SameRptOrder</SQLCode>
<DataFound>1</DataFound>
<SQLResults>
<ROW>
<COLUMN name=”OrderNo”>ORD0029</COLUMN>
<COLUMN name=”AccNo”>C628</COLUMN>
<COLUMN name=”Code”>Proc1</COLUMN>
</ROW>
<ROW>
<COLUMN name=”OrderNo”>ORD0030</COLUMN>
<COLUMN name=”AccNo”>C629</COLUMN>
<COLUMN name=”Code”>Proc142</COLUMN>
</ROW><ROW>
<COLUMN name=”OrderNo”>ORD0049</COLUMN>
<COLUMN name=”AccNo”>C638</COLUMN>
<COLUMN name=”Code”>Proc133</COLUMN>
</ROW><ROW>
<COLUMN name=”OrderNo”>ORD0089</COLUMN>
<COLUMN name=”AccNo”>C700</COLUMN>
<COLUMN name=”Code”>Proc190</COLUMN>
</ROW></SQLResults>
</SQL>
How do I read the above dynamic Rows into three variables (either in list or array), say OrderNo, AccNo and Code? E.g.
OrderNo contains ORD0029, ORD0030, ORD0049, ORD0089
AccNo contains C628, C629, C638, C700
Code contains Proc1, Proc142, Proc133, Proc190
How do I then reference find the individual values within the variable?
Note that the site is already running live using tcl script for its XML to HL7 configuration so I can’t just use xlate for this – I have to modify the current tcl script. I have other SQL section to read before and after this SQL section. I have tried a couple of methods that I found through google search but I am having issues where the SQL section after this will not be read. Am wondering if anyone could help in resolving this?