Example #1
0
 public function dropTable($table)
 {
     if (in_array($table, $this->_alreadyDropped)) {
         return false;
     }
     try {
         parent::dropTable($table);
         $this->_alreadyDropped[] = $table;
         return true;
     } catch (Exception $e) {
         return false;
     }
 }
Example #2
0
 public function execute($sql, $params = array(), $verbose = false)
 {
     parent::execute($sql, $params, $verbose);
 }