blob: 4721f32c35e005c300513fd17632642a94ef3da0 [file] [log] [blame]
admin913ffb72006-09-27 00:36:28 +00001<?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 */
25class CI_DB_cache {
26
27
28
29 /**
admin402d1d52006-09-27 01:54:14 +000030 * Cache it!
admin913ffb72006-09-27 00:36:28 +000031 *
32 * @access public
33 * @return string
34 */
35 function cache()
36 {
37 }
38
39 // --------------------------------------------------------------------
40
41
admine8f6eb62006-10-02 06:46:16 +000042
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
admin913ffb72006-09-27 00:36:28 +000074}
75
76?>