Welcome Guest, Not a member yet? Register   Sign In
[SOLVED] can't save transaction without details
#3

[eluser]maria clara[/eluser]
here's my save functions in my MODEL:


Code:
function save_detail($id,$rows) //Query for saving the company details
    {
        $this->db->where('user_id', $id);
        $this->db->delete('sec_companyaccess');
        
        foreach ($rows as $row)
        {
            $rdata = explode('|', $row);
            
            $data['user_id'] = $id;
            $data['company_id'] = $rdata[3];            
            
            $this->db->insert('sec_companyaccess', $data);
        }
    }
    
    
    
    function save($data,$item,$details) //Save user query
    {

        if ($item=='')    //Add new user
            {
            $this->db->trans_start();
            $data['password'] = md5($this->input->post('password'));    
            $data['status'] = 1;            
            $this->db->insert('sec_users', $data);
            $item = $this->db->insert_id();
            $this->save_detail($item,$details);
            $this->db->trans_complete();                    
            }
        else            //Update/Modify user
            {
            $this->db->trans_start();
            $this->db->where('user_id', $item);
            $this->db->update('sec_users', $data);
            $this->save_detail($item,$details);        
            $this->db->trans_complete();
            }
            
        return $item;    
    }


Messages In This Thread
[SOLVED] can't save transaction without details - by El Forum - 02-02-2010, 08:18 PM
[SOLVED] can't save transaction without details - by El Forum - 02-02-2010, 10:59 PM
[SOLVED] can't save transaction without details - by El Forum - 02-02-2010, 11:15 PM
[SOLVED] can't save transaction without details - by El Forum - 02-02-2010, 11:20 PM
[SOLVED] can't save transaction without details - by El Forum - 02-02-2010, 11:28 PM
[SOLVED] can't save transaction without details - by El Forum - 02-03-2010, 07:44 PM
[SOLVED] can't save transaction without details - by El Forum - 02-03-2010, 07:52 PM
[SOLVED] can't save transaction without details - by El Forum - 02-03-2010, 07:59 PM
[SOLVED] can't save transaction without details - by El Forum - 02-03-2010, 08:12 PM
[SOLVED] can't save transaction without details - by El Forum - 02-03-2010, 08:21 PM
[SOLVED] can't save transaction without details - by El Forum - 02-03-2010, 10:00 PM
[SOLVED] can't save transaction without details - by El Forum - 02-03-2010, 10:16 PM
[SOLVED] can't save transaction without details - by El Forum - 02-03-2010, 11:11 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 12:17 AM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 12:20 AM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 07:45 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 10:13 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:28 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:34 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:35 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:36 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:43 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:45 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:45 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:48 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:50 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:53 PM
[SOLVED] can't save transaction without details - by El Forum - 02-04-2010, 11:58 PM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:01 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:10 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:13 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:18 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:29 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:29 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:33 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:45 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:52 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 12:58 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 01:03 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 01:05 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 01:05 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 01:08 AM
[SOLVED] can't save transaction without details - by El Forum - 02-05-2010, 06:42 PM
[SOLVED] can't save transaction without details - by El Forum - 02-07-2010, 06:57 PM
[SOLVED] can't save transaction without details - by El Forum - 02-07-2010, 07:51 PM
[SOLVED] can't save transaction without details - by El Forum - 02-07-2010, 09:05 PM
[SOLVED] can't save transaction without details - by El Forum - 02-07-2010, 09:40 PM
[SOLVED] can't save transaction without details - by El Forum - 02-07-2010, 09:52 PM
[SOLVED] can't save transaction without details - by El Forum - 02-07-2010, 11:23 PM
[SOLVED] can't save transaction without details - by El Forum - 02-07-2010, 11:30 PM
[SOLVED] can't save transaction without details - by El Forum - 02-07-2010, 11:37 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 12:02 AM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 12:08 AM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 12:13 AM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 12:20 AM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 12:27 AM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 12:33 AM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 12:45 AM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 12:55 AM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 07:37 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 07:55 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 08:01 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 08:06 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 08:10 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 08:11 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 08:16 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 08:23 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 08:32 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 09:11 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 09:38 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 09:41 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 09:45 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 09:54 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 10:07 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 10:17 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 11:03 PM
[SOLVED] can't save transaction without details - by El Forum - 02-08-2010, 11:54 PM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 12:08 AM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 12:29 AM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 12:36 AM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 12:41 AM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 07:33 PM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 08:36 PM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 08:40 PM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 08:51 PM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 08:56 PM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 10:07 PM
[SOLVED] can't save transaction without details - by El Forum - 02-09-2010, 11:27 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 09:11 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 09:23 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 09:32 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 09:35 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 09:38 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 09:47 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 09:52 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 09:55 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 09:59 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 10:01 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 10:04 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 10:07 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 10:45 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 10:59 PM
[SOLVED] can't save transaction without details - by El Forum - 02-14-2010, 11:01 PM
[SOLVED] can't save transaction without details - by El Forum - 02-15-2010, 01:56 AM
[SOLVED] can't save transaction without details - by El Forum - 02-15-2010, 07:40 PM
[SOLVED] can't save transaction without details - by El Forum - 02-15-2010, 09:08 PM
[SOLVED] can't save transaction without details - by El Forum - 02-15-2010, 09:13 PM
[SOLVED] can't save transaction without details - by El Forum - 02-15-2010, 11:00 PM
[SOLVED] can't save transaction without details - by El Forum - 03-03-2010, 01:22 AM



Theme © iAndrew 2016 - Forum software by © MyBB