PMA\libraries\Table::getFullName PHP Method

getFullName() public method

returns full name for table, including database name
public getFullName ( boolean $backquoted = false ) : string
$backquoted boolean whether to quote name with backticks ``
return string
    public function getFullName($backquoted = false)
    {
        return $this->getDbName($backquoted) . '.' . $this->getName($backquoted);
    }

Usage Example

Example #1
0
 /**
  * Test for constructor
  *
  * @return void
  */
 public function testConstruct()
 {
     $table = new Table("PMA_BookMark", "PMA");
     $this->assertEquals('PMA_BookMark', $table->__toString());
     $this->assertEquals('PMA_BookMark', $table->getName());
     $this->assertEquals('PMA', $table->getDbName());
     $this->assertEquals('PMA.PMA_BookMark', $table->getFullName());
 }
All Usage Examples Of PMA\libraries\Table::getFullName