![]() |
Profiler - Database driver is not currently loaded - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Profiler - Database driver is not currently loaded (/showthread.php?tid=61198) |
Profiler - Database driver is not currently loaded - El Forum - 10-14-2014 [eluser]bazianm[/eluser] I have an application that is accessing two databases. I am loading the database within the model (no "default" database set in database.php). I am running a query and getting no errors but I am also getting no results (query in SQL Server Management Studio works fine). I profiled it and I am getting "Database driver is not currently loaded" for the queries. First the code for the model method: Code: function getVendors(){ Now, the var_dump for $db shows an object with the database parameters. I am *assuming* that everything is fine (i.e., it is connecting OK) because I get no errors. My query also shows an object but the rows property is NULL so $return_array is also null. This is CI 2.1.0 Any thoughts? Profiler - Database driver is not currently loaded - El Forum - 10-14-2014 [eluser]bazianm[/eluser] Just a few more thoughts on this: 1) Since this is SQL Server, I think I should show you the config so here it is: Code: $db['barcode']['hostname'] = 'DATASERV'; 2) On a hunch, I loaded the database class in the autoload (which loads the OTHER database, this database is for reference only). The name of the otherdatabase is INVENTORY. Now, when I run the query, it tells me that there are zero queries were queried against the INVENTORY database (this is SQL Server too). So, I changed the default database ($active_group) to barcode and ran the query through $this->db. The query now shows up in the profiler but I STILL have no results... As before, any suggestions welcome... |