Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 9th, 2007, 09:01 AM
Registered User
 
Join Date: Jul 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default XML Grouping Problem

I'm trying to transform a XML file I have output from an Oracle database using Oracle's Java SDK.

The output comes in a standard format:

<ROWSET>
   <ROW rownum="1">
      <COLNAME>Data...</COLNAME>
      <COLNAME>Data...</COLNAME>
   </ROW>
   <ROW rownum="2">
      <COLNAME>Data...</COLNAME>
      <COLNAME>Data...</COLNAME>
   </ROW>

  ...

</ROWSET>

The problem I have is that I have grouped data, for example:

<ROWSET>
   <ROW rownum="1">
      <STUDENTID>10002</STUDENTID>
      <NAME>Fred</NAME>
      <SURNAME>Bloggs</SURNAME>
      <COURSE>Geography For Beginners</COURSE>
   </ROW>
   <ROW rownum="2">
      <STUDENTID>10002</STUDENTID>
      <NAME>Fred</NAME>
      <SURNAME>Bloggs</SURNAME>
      <COURSE>Advanced English</COURSE>
   </ROW>

   <ROW rownum="3">
         <STUDENTID>10010</STUDENTID>
         <NAME>Arnie</NAME>
         <SURNAME>Middle</SURNAME>
         <COURSE>Math</COURSE>
   </ROW>

   <ROW rownum="4">
            <STUDENTID>10010</STUDENTID>
            <NAME>Arnie</NAME>
            <SURNAME>Middle</SURNAME>
            <COURSE>Physics</COURSE>
   </ROW>

  ...

</ROWSET>


Obviously, course is at the wrong level. This is a result of the records returned from the
database in a 'flat' format:

10002, "Fred", "Bloggs", "Geography For Beginners"
10002, "Fred", "Bloggs", "Advanced English"

What is the best way to transform this into the following format?:

<ROWSET>
   <ROW rownum="1">

      <STUDENTID>10002</STUDENTID>
      <NAME>Fred</NAME>
      <SURNAME>Bloggs</SURNAME>

      <COURSES>
          <COURSE>Geography For Beginners</COURSE>
          <COURSE>Advanced English</COURSE>
      <COURSES>

   </ROW>

  ...

</ROWSET>

I've been reading Micheal Kay's XSLT book on pages 622-626, but unfortunately
his example uses data with attributed vales e.g.

<cities>
    <city name="Paris" country="France">
    <city name="Djon" country="France">
    <city name="Crossville" country="US">
</cities>

I'm fairly new to XSLT so I've no idea how I'd translate his example to my situation.
Any ideas on how I would approach my problem? Thanks.

 
Old July 9th, 2007, 06:01 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

For grouping in XSLT 2.0 use xsl:for-each-group. For grouping in XSLT 1.0 see http://www.jenitennison.com/xslt/grouping.

It's not clear to me where you are having difficulty. The difference between grouping on attributes and grouping on child elements is surely trivial.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old July 10th, 2007, 02:48 AM
Registered User
 
Join Date: Jul 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks Michael. I realise now that I probably should have read the 'Read this first before posting thread'.

The difference between grouping with elements and attributes may seem trivial, but not to me at the level I'm at currently! :)





Similar Threads
Thread Thread Starter Forum Replies Last Post
Grouping problem bonekrusher XSLT 3 April 7th, 2007 05:11 PM
grouping multiple xml files in one file bcogney XSLT 3 April 21st, 2006 03:58 AM
Grouping problem aware Access 11 August 4th, 2005 11:00 AM
grouping and expressions problem parityah BOOK: Professional SQL Server Reporting Services ISBN: 0-7645-6878-7 1 May 2nd, 2005 06:43 PM
Grouping XML by Muenchian Method - Urgent :-( xrow XSLT 5 September 28th, 2004 04:07 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.