Welcome Guest, Not a member yet? Register   Sign In
Weird Database Behavior
#5

[eluser]SitesByJoe[/eluser]
Here's the whole function from the model. It worked before and structures like this are common in my coding:

Code:
function get_homepage_songs()
{
    $this->db->select('songs.*');
    return $this->db->get();
    $this->db->select('albums.artwork');
    $this->db->select('artists.name');
    $this->db->select('artists.slug');
    $this->db->from('songs');
    $this->db->join('albums', 'albums.id = songs.album_id', 'left');
    $this->db->join('artists', 'artists.id = songs.artist_id', 'left');
    $this->db->where('songs.feature', 1);
    $this->db->orderby('songs.sort_order', 'asc');
    $this->db->limit(10);
    return $this->db->get();
}

It worked up until I tried to upgrade to 1.7.0 and even after I rolled back its not working still. And the whole cannot find the table when its clearly right there is even odder.

Thanks again for looking at this!


Messages In This Thread
Weird Database Behavior - by El Forum - 02-09-2009, 06:06 PM
Weird Database Behavior - by El Forum - 02-09-2009, 06:34 PM
Weird Database Behavior - by El Forum - 02-09-2009, 06:47 PM
Weird Database Behavior - by El Forum - 02-09-2009, 06:52 PM
Weird Database Behavior - by El Forum - 02-09-2009, 06:59 PM
Weird Database Behavior - by El Forum - 02-09-2009, 07:09 PM
Weird Database Behavior - by El Forum - 02-09-2009, 07:09 PM
Weird Database Behavior - by El Forum - 02-09-2009, 07:12 PM
Weird Database Behavior - by El Forum - 02-09-2009, 07:18 PM
Weird Database Behavior - by El Forum - 02-09-2009, 07:23 PM
Weird Database Behavior - by El Forum - 02-09-2009, 07:28 PM
Weird Database Behavior - by El Forum - 02-09-2009, 07:30 PM
Weird Database Behavior - by El Forum - 02-09-2009, 07:32 PM
Weird Database Behavior - by El Forum - 02-09-2009, 07:40 PM
Weird Database Behavior - by El Forum - 02-09-2009, 08:04 PM
Weird Database Behavior - by El Forum - 02-09-2009, 09:21 PM
Weird Database Behavior - by El Forum - 02-09-2009, 09:38 PM
Weird Database Behavior - by El Forum - 02-09-2009, 11:13 PM



Theme © iAndrew 2016 - Forum software by © MyBB