public function dropTable($name)
 {
     $this->dropAutoincrement($name);
     return parent::dropTable($name);
 }
 /**
  * drop an existing table
  *
  * @param string $name name of the table that should be dropped
  * @return mixed MDB2_OK on success, a MDB2 error on failure
  * @access public
  */
 public function dropTable($name)
 {
     $result = $this->_dropAutoincrement($name);
     $result = parent::dropTable($name);
     //$this->_silentCommit();
     return $result;
 }
 /**
  * drop an existing table
  *
  * @param string $name name of the table that should be dropped
  * @return void
  */
 public function dropTable($name)
 {
     //$this->conn->beginNestedTransaction();
     $result = $this->dropAutoincrement($name);
     $result = parent::dropTable($name);
     //$this->conn->completeNestedTransaction();
     return $result;
 }
 /**
  * {@inheritdoc}
  */
 public function dropTable($name)
 {
     $this->tryMethod('dropAutoincrement', $name);
     parent::dropTable($name);
 }