예제 #1
0
파일: Mysql.php 프로젝트: kstep/pnut
 public function setDatabase($database)
 {
     if (!mysql_select_db($database)) {
         throw new Storage_Db_Mysql_Exception($this->_link);
     }
     return parent::setDatabase($database);
 }