Welcome Guest, Not a member yet? Register   Sign In
Server closes connection when running sql
#2

[eluser]InsiteFX[/eluser]
Try adding the parent::__construct
Code:
class shouts_model extends CI_Model {

public function __construct()
{
  parent::__construct();

  $this->load->database();
}

public function get_newest() {
  $sql = "Exec sp_wallboard_topShouts";
  $query = $this->db->query($sql);
  return $query->result();
}


Messages In This Thread
Server closes connection when running sql - by El Forum - 01-03-2013, 07:56 AM
Server closes connection when running sql - by El Forum - 01-03-2013, 08:16 AM
Server closes connection when running sql - by El Forum - 01-03-2013, 08:34 AM
Server closes connection when running sql - by El Forum - 01-03-2013, 02:21 PM
Server closes connection when running sql - by El Forum - 01-04-2013, 04:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB