diff options
author | admin <devnull@localhost> | 2006-09-27 02:36:28 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-27 02:36:28 +0200 |
commit | 913ffb7af39d07eefb887e1c8faaf25e0ae79097 (patch) | |
tree | 2748639a9576862f193fc6ab735fc0b121d39496 /system | |
parent | e5bb936f808bfd39a6ba8cbe1fc2ddbcf9bf502f (diff) |
Diffstat (limited to 'system')
-rw-r--r-- | system/database/DB_cache.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php new file mode 100644 index 000000000..ca3bba2eb --- /dev/null +++ b/system/database/DB_cache.php @@ -0,0 +1,44 @@ +<?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 { + + + + /** + * Generate CVS from a query result object + * + * @access public + * @return string + */ + function cache() + { + } + + // -------------------------------------------------------------------- + + +} + +?>
\ No newline at end of file |