summaryrefslogtreecommitdiff
path: root/framework/Caching
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-11-09 22:12:14 +0000
committerctrlaltca@gmail.com <>2011-11-09 22:12:14 +0000
commit51aa293bdd77fa6a7bc65341c962655ab7ef52e7 (patch)
tree6638d1ce920df99d38f91c9a9b9c43f9381f8d95 /framework/Caching
parent5380a870b799098d7900b1098b4e9930ba71f10e (diff)
fix #370:
- deprecated TSqliteCache, use TDbCache instead - reworked the dataaccess code of demos/blog - other smalll fixes around
Diffstat (limited to 'framework/Caching')
-rw-r--r--framework/Caching/TSqliteCache.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/Caching/TSqliteCache.php b/framework/Caching/TSqliteCache.php
index d4308e64..15314624 100644
--- a/framework/Caching/TSqliteCache.php
+++ b/framework/Caching/TSqliteCache.php
@@ -15,8 +15,9 @@
*
* TSqliteCache implements a cache application module based on SQLite database.
*
- * To use this module, the sqlite PHP extension must be loaded. Note, Sqlite extension
- * is no longer loaded by default since PHP 5.1.
+ * THIS CLASS IS DEPRECATED since it relies on the sqlite PHP extension, that is
+ * no longer loaded by default since PHP 5.1. You are discouraged from using it:
+ * use {@link TDbCache} instead.
*
* Since PRADO v3.1.0, a new DB-based cache module called {@link TDbCache}
* is provided. If you have PDO extension installed, you may consider using