Prado\Data\Common\Mssql\TMssqlTableInfo::getTableFullName PHP 메소드

getTableFullName() 공개 메소드

public getTableFullName ( ) : string
리턴 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() . ']';
    }