Can you please advice on how to execute a stored procedure using the CodeIgniter Framework? I looked into the User Guide and was only able to find ways to access the DB using queries or ActiveRecords. Appreciate if someone could assist at the earliest.
Share
You can use
$this->db->query("call my_stored_proc('arg1','arg2');").if you have out parameters you have to wrap it in a transaction like so: