Prado\Data\Common\Pgsql\TPgsqlTableInfo::getTableFullName PHP Method

getTableFullName() public method

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