Example #1
0
File: Mysql.php Project: kstep/pnut
 public function setDatabase($database)
 {
     if (!mysql_select_db($database)) {
         throw new Storage_Db_Mysql_Exception($this->_link);
     }
     return parent::setDatabase($database);
 }