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