diff options
author | ctrlaltca@gmail.com <> | 2011-11-09 22:12:14 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-11-09 22:12:14 +0000 |
commit | 51aa293bdd77fa6a7bc65341c962655ab7ef52e7 (patch) | |
tree | 6638d1ce920df99d38f91c9a9b9c43f9381f8d95 /framework/Caching | |
parent | 5380a870b799098d7900b1098b4e9930ba71f10e (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.php | 5 |
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
|