summaryrefslogtreecommitdiffstats
path: root/system/database/DB_driver.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-06 04:10:23 +0200
committeradmin <devnull@localhost>2006-10-06 04:10:23 +0200
commitc5f7fa3f8fea283b51ee6cd80b36b2112b2e81db (patch)
treeb5ce6b140d38dba5288fbcc1eed0971d556b5ad8 /system/database/DB_driver.php
parent5294f4f36aeb3b7685781708ce78ab28f1785764 (diff)
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r--system/database/DB_driver.php43
1 files changed, 33 insertions, 10 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index f77b46609..e8c4a8236 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -51,7 +51,7 @@ class CI_DB_driver {
var $_trans_failure = FALSE; // Used with transactions to determine if a rollback should occur
var $cache_on = FALSE;
var $cachedir = '';
- var $cache_autodel = TRUE;
+ var $cache_autodel = FALSE;
var $CACHE; // The cache class object
@@ -889,7 +889,21 @@ class CI_DB_driver {
return call_user_func_array($function, $args);
}
}
-
+
+ // --------------------------------------------------------------------
+
+ /**
+ * Set Cache Directory Path
+ *
+ * @access public
+ * @param string the path to the cache directory
+ * @return void
+ */
+ function cache_set_path($path = '')
+ {
+ $this->cachedir = $path;
+ }
+
// --------------------------------------------------------------------
/**
@@ -915,32 +929,41 @@ class CI_DB_driver {
{
return $this->cache_on = FALSE;
}
+
// --------------------------------------------------------------------
/**
- * Set the cache "auto-delete" value
+ * Delete the cache files associated with a particular URI
*
* @access public
* @return void
*/
- function cache_autodelete($val = TRUE)
+ function cache_delete()
{
- $this->cache_autodel = ( ! is_bool($val)) ? TRUE : $val;
+ if ( ! $this->_cache_init())
+ {
+ return FALSE;
+ }
+ return $this->CACHE->delete();
}
-
+
// --------------------------------------------------------------------
/**
- * Set Cache Directory Path
+ * Delete All cache files
*
* @access public
- * @param string the path to the cache directory
* @return void
*/
- function cache_set_path($path = '')
+ function cache_delete_all()
{
- $this->cachedir = $path;
+ if ( ! $this->_cache_init())
+ {
+ return FALSE;
+ }
+
+ return $this->CACHE->delete_all();
}
// --------------------------------------------------------------------