Welcome Guest, Not a member yet? Register   Sign In
$this->db->lastquery() not working
#10

[eluser]D-dawg[/eluser]
There are different, but an update would look like:
Code:
function SetMarker($data, $id)
  {
    $this->db->set($data);
    if($id != 'null')
    {  $this->db->where('id', $id);
       $this->db->update('markers'); }
    else
    { $this->db->insert('markers');
    $data['id'] = $this->db->insert_id();}
    return $data;
  }

I know they work since the job gets done, still lastquery returns nothing. Is there another way with codeigniter or phpmyadmin I can view the entire last query?


Messages In This Thread
$this->db->lastquery() not working - by El Forum - 12-30-2010, 10:24 AM
$this->db->lastquery() not working - by El Forum - 12-30-2010, 10:35 AM
$this->db->lastquery() not working - by El Forum - 12-30-2010, 03:59 PM
$this->db->lastquery() not working - by El Forum - 12-31-2010, 04:25 AM
$this->db->lastquery() not working - by El Forum - 12-31-2010, 05:01 AM
$this->db->lastquery() not working - by El Forum - 12-31-2010, 06:57 AM
$this->db->lastquery() not working - by El Forum - 12-31-2010, 07:48 AM
$this->db->lastquery() not working - by El Forum - 12-31-2010, 08:25 AM
$this->db->lastquery() not working - by El Forum - 12-31-2010, 12:22 PM
$this->db->lastquery() not working - by El Forum - 01-02-2011, 01:23 PM
$this->db->lastquery() not working - by El Forum - 06-17-2011, 07:43 PM
$this->db->lastquery() not working - by El Forum - 06-17-2011, 08:55 PM
$this->db->lastquery() not working - by El Forum - 06-17-2011, 09:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB