codeigniter中的这个数据库错误是什么

时间:2014-04-21 20:08:43

标签: php mysql codeigniter

我在codeigniter中遇到以下错误

错误号码:1064

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE `appID` = 'buttn_default'' at line 2

SELECT `responseURL` WHERE `appID` = 'buttn_default'

这是我用来从数据库中获取数据的模态函数

function get_response_url($appID, $merchant_id)
    {
        $this->db->select('responseURL');
        $this->db->from('response_urls');
        $this->db->where('appID',$appID);
        //$this->db->or_where('merchant_id',$merchant_id);
        $query = $this->db->get();
        if($query->num_rows() == 1)
        {
            foreach($query->result() as $row)
            return $row->responseURL;
        }
    else
        {
            $appID='buttn_default';
            $this->db->select('responseURL');
            $this->db->where('appID',$appID);
            $query = $this->db->get();
            if($query->num_rows() == 1)
            foreach($query->result() as $row)
            return $row->responseURL;
        }

    }

为什么这不起作用。为什么我得到这个错误。

1 个答案:

答案 0 :(得分:3)

您的mysql错误显示没有from子句,而且您的其他部分也缺少活动记录的from()功能

else
    {
        $appID='buttn_default';
        $this->db->select('responseURL');
        $this->db->from('table_name_here');  <------
        $this->db->where('appID',$appID);
        $query = $this->db->get();
        if($query->num_rows() == 1)
        foreach($query->result() as $row)
        return $row->responseURL;
    }