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

[eluser]SitesByJoe[/eluser]
Sorry, that first return was only in there for testing.

Here's the real function:

Code:
function get_homepage_songs()
{
    $this->db->select('songs.*');
    $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