summaryrefslogtreecommitdiff
path: root/demos/sqlmap-sample/protected/petshop-db/products.xml
blob: 3c2899a7beeb6aa6dd81209ed046b6dbbfb82c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8" ?>
<sqlmap>

	<cacheModel id="product-cache" implementation="basic">
		<!-- cache data for 60 seconds -->
		<property name="expiry" value="60" /> 
	</cacheModel>

	<select id="SelectAllProducts" cacheModel="product-cache" >
		SELECT * 
		FROM 
			product
	</select>

</sqlmap>