API16:JTableSession/delete
From Joomla! Documentation
Description
Overloaded delete method
Syntax
delete($oid=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $oid | null |
Returns
true if successful otherwise returns and error message
Defined in
libraries/joomla/database/table/session.php
Importing
jimport( 'joomla.database.table.session' );
Source Body
function delete($oid=null)
{
//if (!$this->canDelete($msg))
//{
// return $msg;
//}
$k = $this->_tbl_key;
if ($oid) {
$this->$k = $oid;
}
$query = 'DELETE FROM '.$this->_db->nameQuote($this->_tbl).
' WHERE '.$this->_tbl_key.' = '. $this->_db->Quote($this->$k);
$this->_db->setQuery($query);
if ($this->_db->query())
{
return true;
}
else
{
$this->setError($this->_db->getErrorMsg());
return false;
}
}
Examples
Code Examples