Hi all,
I want to use transaction in the controller but I am getting below error:
Undefined property: App\Controllers\Product_Control::$db (Product_Control is my controller)
My code is as below
Am I doing anything wrong here.?... Please help me.
I want to use transaction in the controller but I am getting below error:
Undefined property: App\Controllers\Product_Control::$db (Product_Control is my controller)
My code is as below
Code:
$this->db->transBegin();
if($result === false)
{
$this->db->transRollback();
return false;
}
Am I doing anything wrong here.?... Please help me.