Gdn_DatabaseStructure::view PHP Method

view() public method

Specifies the name of the view to create or modify.
public view ( string $Name, string $Query )
$Name string The name of the view.
$Query string Query to create as the view. Typically this can be generated with the $Database object.
    public function view($Name, $Query)
    {
        trigger_error(errorMessage('The selected database engine can not create or modify views.', $this->ClassName, 'View'), E_USER_ERROR);
    }