Prado\Data\Common\Pgsql\TPgsqlTableInfo::getTableFullName PHP 메소드

getTableFullName() 공개 메소드

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