Ruckusing_Adapter_Sqlite3_Base::drop_database PHP Method

drop_database() public method

public drop_database ( string $databaseName ) : boolean
$databaseName string
return boolean
    public function drop_database($databaseName)
    {
        $this->log_unsupported_feature(__FUNCTION__);
        return true;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Drop a database
  *
  * @param string $name the name of the database
  *
  * @return boolean
  */
 public function drop_database($name)
 {
     return $this->_adapter->drop_database($name);
 }