Google\Cloud\BigQuery\Dataset::exists PHP Method

exists() public method

Example: echo $dataset->exists();
public exists ( ) : boolean
return boolean
    public function exists()
    {
        try {
            $this->connection->getDataset($this->identity + ['fields' => 'datasetReference']);
        } catch (NotFoundException $ex) {
            return false;
        }
        return true;
    }