簡體   English   中英

Codeigniter / Postgresql:致命錯誤:在非對象上調用成員函數num_rows()

[英]Codeigniter/Postgresql: Fatal error: Call to a member function num_rows() on a non-object

這件事困擾了我幾天,而我卻無法修復它。 我有這張注冊表。 提交此表單時,此錯誤不斷彈出,並且發生這種情況的原因是未將注冊詳細信息插入數據庫。

我正在使用Postgresql作為數據庫系統。 但是沒有插入數據。 我對此感到非常沮喪。 我將在下面發布我的模型,控制器,如果需要任何信息,請告訴我。

控制器:

    function register()
{

    //set validation rules
    $this->form_validation->set_rules('customer_name', 'Customer Name', 'trim|required|xss_clean');
    $this->form_validation->set_rules('address1', 'Address 1', 'trim|required|xss_clean');
    $this->form_validation->set_rules('address2', 'Address 2', 'trim|required|xss_clean');
    $this->form_validation->set_rules('city', 'City', 'trim|required|xss_clean');
    $this->form_validation->set_rules('state', 'State', 'trim|required|xss_clean');
    $this->form_validation->set_rules('country', 'Country', 'trim|required|xss_clean');
    $this->form_validation->set_rules('phone', 'Phone', 'trim|required|xss_clean|is_numeric');
    $this->form_validation->set_rules('mobile', 'Mobile', 'trim|required|xss_clean|is_numeric');
    $this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email|is_unique[gkb_users.email]');
    $this->form_validation->set_rules('username', 'Username', 'trim|required|is_unique[gkb_users.username]');
    $this->form_validation->set_rules('password', 'Password', 'trim|required|md5');
    $this->form_validation->set_rules('confpassword', 'Confirm Password', 'trim|required|matches[password]|md5');

    //validate form input
    if ($this->form_validation->run() == FALSE)
    {
    //fails
    $this->loadHeader($this);

    //load sidebar
    $this->loadSidebar($this);

    //load middle content
    $this->load->view('register_view'); 

    //load footer
    $this->loadFooter($this);
    }
    else
    {
        //insert the user registration details into database
        $data = array(
            'cust_name' => $this->input->post('customer_name'),
            'address1' => $this->input->post('address1'),
            'address2' => $this->input->post('address2'),
            'city' => $this->input->post('city'),
            'state_code' => $this->input->post('state'),
            'country_code' => $this->input->post('country'),
            'phone' => $this->input->post('phone'),
            'mobile' => $this->input->post('mobile'),
            'email' => $this->input->post('email'),
            'username' => $this->input->post('username'),
            'password' => $this->input->post('password'),
        );

        // insert form data into database
        if ($this->user_model->insertUser($data))
        {
            // send email
            if ($this->user_model->sendEmail($this->input->post('email')))
            {
                // successfully sent mail
                $this->session->set_flashdata('msg','<div class="alert alert-success text-center">You are Successfully Registered! Please confirm the mail sent to your Email-ID!!!</div>');
                redirect('user/register');
            }
            else
            {
                // error
                $this->session->set_flashdata('msg','<div class="alert alert-danger text-center">Oops! Error.  Please try again later!!!</div>');
                redirect('user/register');
            }
        }
        else
        {
            // error
            $this->session->set_flashdata('msg','<div class="alert alert-danger text-center">Oops! Error.  Please try again later!!!</div>');
            redirect('user/register');
        }
    }
}

模型:

    function insertUser($data)
{
    return $this->db->insert('users', $data);
}

如果能解決這個問題,我將不勝感激。 謝謝

編輯:

    public function checkfrontendUser($username,$passwd)
{
    $sql = "
        SELECT * FROM users
        WHERE (
                    `username` = '".$username."'
                    OR
                    `email` = '".$username."'
              )
              AND `password` = '".$passwd."'
    ";      
    $result = $this->db->query($sql);
    if ($result->num_rows() > 0)
    {
        return $result->result_array();
    }       
    return FALSE;
}

主要是由於數據庫連接問題或查詢失敗而發生的。 不管如何,你是否是通過連接你的數據庫database.php$this->load->database() 仔細檢查您的Db憑據。

其次,您可以檢查為

if($result !== FALSE){
    if ($result->num_rows() > 0){
        return $result->result_array();
    }  
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM