1.

Fetch Last Inserted Id, Fetch All Record And Fetch A Single Record.

Answer»

$this->_db->LASTINSERTID();
$this->_db->fetchAll($SQL);
$this->_db->fetchRow($sql);

$this->_db->lastInsertId();
$this->_db->fetchAll($sql);
$this->_db->fetchRow($sql);



Discussion

No Comment Found