admin | 913ffb7 | 2006-09-27 00:36:28 +0000 | [diff] [blame] | 1 | <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); |
| 2 | /** |
| 3 | * Code Igniter |
| 4 | * |
| 5 | * An open source application development framework for PHP 4.3.2 or newer |
| 6 | * |
| 7 | * @package CodeIgniter |
| 8 | * @author Rick Ellis |
| 9 | * @copyright Copyright (c) 2006, pMachine, Inc. |
| 10 | * @license http://www.codeignitor.com/user_guide/license.html |
| 11 | * @link http://www.codeigniter.com |
| 12 | * @since Version 1.0 |
| 13 | * @filesource |
| 14 | */ |
| 15 | |
| 16 | // ------------------------------------------------------------------------ |
| 17 | |
| 18 | /** |
| 19 | * DB Cachine Class |
| 20 | * |
| 21 | * @category Database |
| 22 | * @author Rick Ellis |
| 23 | * @link http://www.codeigniter.com/user_guide/database/ |
| 24 | */ |
| 25 | class CI_DB_cache { |
| 26 | |
| 27 | |
| 28 | |
| 29 | /** |
admin | 402d1d5 | 2006-09-27 01:54:14 +0000 | [diff] [blame] | 30 | * Cache it! |
admin | 913ffb7 | 2006-09-27 00:36:28 +0000 | [diff] [blame] | 31 | * |
| 32 | * @access public |
| 33 | * @return string |
| 34 | */ |
| 35 | function cache() |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | // -------------------------------------------------------------------- |
| 40 | |
| 41 | |
admin | e8f6eb6 | 2006-10-02 06:46:16 +0000 | [diff] [blame] | 42 | |
| 43 | function cache_exists($sql) |
| 44 | { |
| 45 | |
| 46 | |
| 47 | } |
| 48 | |
| 49 | |
| 50 | function get_cache($sql) |
| 51 | { |
| 52 | |
| 53 | |
| 54 | } |
| 55 | |
| 56 | |
| 57 | function delete_cache() |
| 58 | { |
| 59 | |
| 60 | } |
| 61 | |
| 62 | |
| 63 | function delete_all_caches() |
| 64 | { |
| 65 | |
| 66 | |
| 67 | } |
| 68 | |
| 69 | |
| 70 | |
| 71 | |
| 72 | |
| 73 | |
admin | 913ffb7 | 2006-09-27 00:36:28 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | ?> |