Changeset 3147
- Timestamp:
- 05/03/08 15:53:54 (2 months ago)
- Files:
-
- trunk/Solar/Session/Handler/Adapter/Sql.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Solar/Session/Handler/Adapter/Sql.php
r2985 r3147 92 92 $this->_sql->disconnect(); 93 93 $this->_sql = null; 94 return true; 94 95 } 95 96 … … 231 232 try { 232 233 $this->_sql->insert($this->_config['table'], $cols); 234 return true; 233 235 } catch (Solar_Sql_Exception $e) { 234 236 // @todo log this somehow? … … 261 263 try { 262 264 $this->_sql->update($this->_config['table'], $cols, $where); 265 return true; 263 266 } catch (Solar_Sql_Exception $e) { 264 267 // @todo log this somehow?
