Stored Procedure is not executed |
[eluser]Rahul gamit[/eluser]
Hey thanks for the help this is working now, but i am facing another problem which is as below I am trying to edit my records using the storedprocedure of mysql. The problem is that , when i am tracing the lastquery which has been called very last using $this->db->last_query() it gives the called storedprocedure with parameters but it wont able to update any records in database. here is my code My StoredProcedure Code: CREATE DEFINER=`root`@`localhost` PROCEDURE `tblaccountmaster_edit`( Code: $query= "CALL tblaccountmaster_edit(?,?,?,?,?,?,?,?,?,?,?,?,?,?)"; Code: CALL tblaccountmaster_edit('19','test infotech','test first name','test last name','surat','surat','gujarat','1','394210','979797979','1321321','123','265629','[email protected]') and when i am executing this procedure in my client db tool it gives me the correct result, but when i am calling from codeigniter it won’t work.. thanks in advance |
Messages In This Thread |
Stored Procedure is not executed - by El Forum - 07-28-2011, 08:07 AM
Stored Procedure is not executed - by El Forum - 07-29-2011, 02:19 AM
Stored Procedure is not executed - by El Forum - 07-29-2011, 07:01 PM
Stored Procedure is not executed - by El Forum - 07-29-2011, 11:10 PM
Stored Procedure is not executed - by El Forum - 07-29-2011, 11:14 PM
Stored Procedure is not executed - by El Forum - 07-29-2011, 11:56 PM
Stored Procedure is not executed - by El Forum - 07-30-2011, 05:16 AM
|