Home » XML » XML_sql2xml » Bug #6910
inner join results display odd xml structure
Details
| Submitted | 2006-02-23 17:57 UTC |
|---|---|
| From | kharr1027 at gmail dot com |
| Assigned | ifeghali |
| Status | Bogus |
| Package | XML_sql2xml |
| PHP Version | Irrelevant |
| OS | fedora core 2 |
| Roadmaps | (Not assigned) |
Comments
[2006-02-23 17:57 UTC] kharr1027 at gmail dot com
Description:
------------
If you do a query with an inner join the results in the xml are parsed out into rows as such:
Test script:
---------------
<root>
<result>
<row>
<id>1</id>
<row>
<group>ntara editors</group>
</row>
<email>harris@ntara.com</email>
<password>harris</password>
</row>
</result>
</root>
Expected result:
----------------
I would expect this xml structure
<root>
<result>
<row>
<id>1</id>
<group>ntara editors</group>
<email>harris@ntara.com</email>
<password>harris</password>
</row>
</result>
</root>