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

[eluser]Xabi87[/eluser]
Hi,

I've just setup a new codeigniter instance, everything except the database connection is working fine.

I've setup my config as follows (in config/database.php):


Code:
$active_group = 'default';
$active_record = TRUE;

$db['default']['hostname'] = "174.123.123.123";
$db['default']['port'] = "3306";
$db['default']['username'] = "test_user";
$db['default']['password'] = "mypassword";
$db['default']['database'] = "shora_template";
$db['default']['dbdriver'] = "mysql";
$db['default']['dbprefix'] = "";
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = FALSE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = "";
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";

I've setup a query in a test model, and I'm seeing no errors (should I?), only no results:
Code:
$query = $this->db->get('Daemon');
echo "num rows:" . $query->num_rows();

This returns nothing.

The query definitely returns a result, I'm using a mysql query browser session with the exact same connection info, same port, same user, and the same query is returning a result.

I've enabled the profiler on the page and I can see the correct query in the 'DATABASE' section.

Any ideas? I'd appreciate some further troubleshooting steps please!

Thanks,

Xabi


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