Add useful get function to PMA_TableSearch

This commit is contained in:
Atul Pratap Singh 2012-06-16 14:17:15 +05:30
parent a2de4d5c34
commit 60cb21cd3d

View File

@ -105,6 +105,16 @@ class PMA_TableSearch
$this->_loadTableInfo($this->_db, $this->_table);
}
/**
* Returns Column names array
*
* @return array column names
*/
public function getColumnNames()
{
return $this->_columnNames;
}
/**
* Gets all the columns of a table along with their types, collations
* and whether null or not.