JTable/getKeyName
From Joomla! Documentation
< API16:JTable
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Method to get the primary key field name for the table.
Syntax[edit]
getKeyName()
Returns[edit]
string The name of the primary key for the table.
Defined in[edit]
libraries/joomla/database/table.php
Importing[edit]
jimport( 'joomla.database.table' );
Source Body[edit]
public function getKeyName()
{
return $this->_tbl_key;
}
Examples[edit]
Code Examples[edit]