[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] xsl:variable and node list


Subject: Re: [xsl] xsl:variable and node list
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 15 Oct 2004 09:57:37 +0100

don't do that:

<xsl:variable name="withname">
     <xsl:copy-of
select="tblMIMCompanies[contains(translate(@name,$upperCase,$lowerCase),tran
slate($name,$upperCase,$lowerCase))'true']"/>
</xsl:variable>

which makes a result tree fragment not a node list (and is expensive as
it really has to copy all the nodes)

do

<xsl:variable name="withname"
select="tblMIMCompanies[contains(translate(@name,$upperCase,$lowerCase),tran
slate($name,$upperCase,$lowerCase))'true']"/>


which makes a node set is less to type and a lot less expensive to
execute.

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________


Current Thread