Tag: Function

  • CodeIgniter MySQL Stored Procedure and Function

    MySQL has procedure and function feature. There is good article explaining both topics in . To call mysql function from codeigniter, we can simply use query() function from database class. For example Where storedFunction is the name of function we have created before. To call mysql stored procedure from codeigniter, we can use query() function…