diff options
author | wei <> | 2006-04-14 11:23:56 +0000 |
---|---|---|
committer | wei <> | 2006-04-14 11:23:56 +0000 |
commit | f6a5e7589396854e10e023c25237b47e512ff047 (patch) | |
tree | 2b313bb8b66869235ee06b9cae2af2f7645cf5c9 /demos/sqlmap-sample | |
parent | 3d3f8d3832921f99daf8ce1953304763c2e76c62 (diff) |
Adding SQLMap unit tests. Allow sqlmap to use Prado's caching module to cache records.
Diffstat (limited to 'demos/sqlmap-sample')
-rw-r--r-- | demos/sqlmap-sample/protected/petshop-db/products.xml | 7 | ||||
-rw-r--r-- | demos/sqlmap-sample/protected/runtime/application.xml/config.cache | bin | 2101 -> 0 bytes | |||
-rw-r--r-- | demos/sqlmap-sample/protected/runtime/application.xml/global.cache | 1 | ||||
-rw-r--r-- | demos/sqlmap-sample/protected/runtime/application.xml/sqlite.cache | bin | 19456 -> 0 bytes |
4 files changed, 6 insertions, 2 deletions
diff --git a/demos/sqlmap-sample/protected/petshop-db/products.xml b/demos/sqlmap-sample/protected/petshop-db/products.xml index bf1453b2..3c2899a7 100644 --- a/demos/sqlmap-sample/protected/petshop-db/products.xml +++ b/demos/sqlmap-sample/protected/petshop-db/products.xml @@ -1,7 +1,12 @@ <?xml version="1.0" encoding="utf-8" ?>
<sqlmap>
- <select id="SelectAllProducts">
+ <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
diff --git a/demos/sqlmap-sample/protected/runtime/application.xml/config.cache b/demos/sqlmap-sample/protected/runtime/application.xml/config.cache Binary files differdeleted file mode 100644 index ce7bd76a..00000000 --- a/demos/sqlmap-sample/protected/runtime/application.xml/config.cache +++ /dev/null diff --git a/demos/sqlmap-sample/protected/runtime/application.xml/global.cache b/demos/sqlmap-sample/protected/runtime/application.xml/global.cache deleted file mode 100644 index b35e9768..00000000 --- a/demos/sqlmap-sample/protected/runtime/application.xml/global.cache +++ /dev/null @@ -1 +0,0 @@ -a:1:{s:35:"prado:securitymanager:validationkey";s:32:"e632288aebf1e51c0447ab4b701f1aa7";}
\ No newline at end of file diff --git a/demos/sqlmap-sample/protected/runtime/application.xml/sqlite.cache b/demos/sqlmap-sample/protected/runtime/application.xml/sqlite.cache Binary files differdeleted file mode 100644 index be9b9cc0..00000000 --- a/demos/sqlmap-sample/protected/runtime/application.xml/sqlite.cache +++ /dev/null |