[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

comparing 2 childs of 2 childs

Subject: comparing 2 childs of 2 childs
From: André Moniz <ei99041@xxxxxxxx>
Date: Mon, 22 Mar 2004 13:51:39 +0000
fk_column_name
Hi all, my xml is representing a database structure.. and so it goes
like this:

    <DataSet>
        <DataTable TableName="tabela">
           <Column>
                <ColumnName>id</ColumnName>
           </Column> .. and then more columns

           <Foreign_Keys>
                <FK_COLUMN_NAME>CO</FK_COLUMN_NAME>
                  .. then even more childs.. 
           </Foreign_Keys>
                and more foreing keys.. 
Anyway.. the point is that i want for each Column.. to compare with
the all Foreign_Keys/FK_COLUMN_NAME and then if is equal print
something... in case he doesn't find one column that doesn't match any
foreign_key it means is not a foreign key so prints another thing...
Anyone has good ideas? I did something like this... maybe you can
change it and then give me an ideia
        
<xsl:template name="ListagemValores">
     <xsl:param name="thisField"/>
         <xsl:for-each select="$thisField/Column">
          <TD>
            <xsl:variable name="coluna">
                <xsl:value-of select="ColumnName"/>
            </xsl:variable>                                
                    
            <xsl:for-each select="../Foreign_Keys">
             <xsl:choose>
                <xsl:when test="FK_COLUMN_NAME = $coluna">
                 <db:dataLabel fieldName="{$coluna}">
                    <db:tableData name="list_{FK_NAME}"
foreignTable="{PK_TABLE_NAME}" visibleFields="descricao"
storeField="{PK_COLUMN_NAME}"/></db:dataLabel>
                </xsl:when>
                <xsl:otherwise>
                <!-- <db:label fieldName="{$coluna}" />-->
                </xsl:otherwise>
              </xsl:choose>
           </xsl:for-each>
                                
            </TD>
   </xsl:for-each>
</xsl:template>

Thanks 
Andri Moniz

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.