Welcome Guest, Not a member yet? Register   Sign In
Query returning no results?
#3

[eluser]Xabi87[/eluser]
Sorry, here's more info:

The Controller:
Code:
<?php

class Daemon extends Controller {

    function Daemon()
    {
        
        parent::Controller();
        
        //load daemon model
        $this->load->model("daemon_model");
        //enable profiler
        $this->output->enable_profiler(true);
    }
    
    function index()
    {
        
        $data['daemons'] = $this->daemon_model->get_daemons();
        $this->load->view('daemon/daemon_view', $data);

    }
}

/* End of file daemon.php */
/* Location: ./system/application/controllers/daemon.php */


The Model:
Code:
<?php
class Daemon_model extends Model {

    function Daemon_model()
    {    
        parent::Model();
    }
    function get_daemons(){
        
        $query = $this->db->get('Daemon');
        echo "num rows:" . $query->num_rows();
        
        //return 2D array
        return to_2D_array($query);
    }

}
?>

The view is not important. I'm simply trying to echo the query result from the model, and it's not working. Should it throw an error if the db connection is not correct?

Thanks


Messages In This Thread
Query returning no results? - by El Forum - 11-16-2010, 03:55 PM
Query returning no results? - by El Forum - 11-16-2010, 04:50 PM
Query returning no results? - by El Forum - 11-16-2010, 04:59 PM
Query returning no results? - by El Forum - 11-16-2010, 05:27 PM
Query returning no results? - by El Forum - 11-16-2010, 07:56 PM
Query returning no results? - by El Forum - 11-16-2010, 08:05 PM
Query returning no results? - by El Forum - 11-16-2010, 10:20 PM
Query returning no results? - by El Forum - 11-16-2010, 11:39 PM
Query returning no results? - by El Forum - 11-17-2010, 12:52 AM
Query returning no results? - by El Forum - 11-17-2010, 02:10 AM
Query returning no results? - by El Forum - 11-17-2010, 03:55 AM
Query returning no results? - by El Forum - 11-17-2010, 04:11 AM
Query returning no results? - by El Forum - 11-17-2010, 05:16 AM
Query returning no results? - by El Forum - 11-17-2010, 01:40 PM
Query returning no results? - by El Forum - 11-17-2010, 03:17 PM
Query returning no results? - by El Forum - 11-17-2010, 03:30 PM
Query returning no results? - by El Forum - 11-17-2010, 03:57 PM



Theme © iAndrew 2016 - Forum software by © MyBB