diff options
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_cache.php | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php deleted file mode 100644 index 4721f32c3..000000000 --- a/system/database/DB_cache.php +++ /dev/null @@ -1,76 +0,0 @@ -<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); -/** - * Code Igniter - * - * An open source application development framework for PHP 4.3.2 or newer - * - * @package CodeIgniter - * @author Rick Ellis - * @copyright Copyright (c) 2006, pMachine, Inc. - * @license http://www.codeignitor.com/user_guide/license.html - * @link http://www.codeigniter.com - * @since Version 1.0 - * @filesource - */ - -// ------------------------------------------------------------------------ - -/** - * DB Cachine Class - * - * @category Database - * @author Rick Ellis - * @link http://www.codeigniter.com/user_guide/database/ - */ -class CI_DB_cache { - - - - /** - * Cache it! - * - * @access public - * @return string - */ - function cache() - { - } - - // -------------------------------------------------------------------- - - - - function cache_exists($sql) - { - - - } - - - function get_cache($sql) - { - - - } - - - function delete_cache() - { - - } - - - function delete_all_caches() - { - - - } - - - - - - -} - -?>
\ No newline at end of file |