Prado\Data\Common\Mysql\TMysqlTableInfo::getTableFullName PHP Méthode

getTableFullName() public méthode

public getTableFullName ( ) : string
Résultat string full name of the table, database dependent.
    public function getTableFullName()
    {
        if (($schema = $this->getSchemaName()) !== null) {
            return '`' . $schema . '`.`' . $this->getTableName() . '`';
        } else {
            return '`' . $this->getTableName() . '`';
        }
    }