From b4e9f6795206fab6b952f814ccf812677a34c635 Mon Sep 17 00:00:00 2001 From: xue <> Date: Wed, 7 Dec 2005 00:32:29 +0000 Subject: --- framework/Data/TSqliteCache.php | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) (limited to 'framework/Data/TSqliteCache.php') diff --git a/framework/Data/TSqliteCache.php b/framework/Data/TSqliteCache.php index 5eb692d4..13455849 100644 --- a/framework/Data/TSqliteCache.php +++ b/framework/Data/TSqliteCache.php @@ -64,7 +64,7 @@ * @package System.Data * @since 3.0 */ -class TSqliteCache extends TComponent implements IModule, ICache +class TSqliteCache extends TModule implements ICache { /** * name of the table storing cache data @@ -91,10 +91,6 @@ class TSqliteCache extends TComponent implements IModule, ICache * @var string the database file name */ private $_file=null; - /** - * @var string id of this module - */ - private $_id=''; /** * Destructor. @@ -119,6 +115,8 @@ class TSqliteCache extends TComponent implements IModule, ICache */ public function init($application,$config) { + parent::init($application,$config); + if(!function_exists('sqlite_open')) throw new TConfigurationException('sqlitecache_extension_required'); if($this->_file===null) @@ -141,22 +139,6 @@ class TSqliteCache extends TComponent implements IModule, ICache $application->setCache($this); } - /** - * @return string id of this module - */ - public function getID() - { - return $this->_id; - } - - /** - * @param string id of this module - */ - public function setID($value) - { - $this->_id=$value; - } - /** * @return string database file path (in namespace form) */ -- cgit v1.2.3