<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" client="yes" href="slideshow2twoframesie5.xsl"?>
<xsql:query connection="slideshow" xmlns:xsql="urn:oracle-xsql"
	rowset-element="slideshow" row-element="slide" tag-case="lower"
	attribute="Title"
	find="%"
>
  	SELECT *
	FROM Slide
	WHERE	{@attribute} LIKE '%{@find}%'

</xsql:query>

<!--

  	SELECT *
	FROM Slide
	WHERE	Title LIKE '%{@find}%'
		OR Description LIKE '%{@find}%'

Ignore cases

  	SELECT *
	FROM Slide
	WHERE	UPPER(Title) LIKE UPPER('%{@find}%')
		OR UPPER(Description) LIKE UPPER('%{@find}%')

-->