PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » XML » XML_sql2xml » Bug #6910

inner join results display odd xml structure

Details

Submitted2006-02-23 17:57 UTC
Fromkharr1027 at gmail dot com
Assignedifeghali
StatusBogus
PackageXML_sql2xml
PHP VersionIrrelevant
OSfedora 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>