Prado\Data\Common\Mssql\TMssqlTableInfo::getTableFullName PHP Method

getTableFullName() public method

public getTableFullName ( ) : string
return string full name of the table, database dependent.
    public function getTableFullName()
    {
        //MSSQL alway returns the catalog, schem and table names.
        return '[' . $this->getCatalogName() . '].[' . $this->getSchemaName() . '].[' . $this->getTableName() . ']';
    }