Elizabeth Barham <[EMAIL PROTECTED]> writes:
> <xsl:variable name="products"
> select="sql:new($driver, $driver-url)"
> />
> <xsl:value-of select="sql:addParameterWithType('0000000001', 'string')"/>
^
reference to db variable goes here ---/
The first argument to the addParameter functions need to be the db
reference, so this:
<xsl:value-of
select="sql:addParameterWithType($products, '0000000001', 'string')"
/>
works.
Elizabeth
