lastInsertId() public method

public lastInsertId ( $sequence )
Example #1
0
 public function insert($sequence = '')
 {
     $this->execute();
     return $sequence ? (int) $this->_db->lastInsertId($sequence) : null;
 }