![]() |
odbc issue w/ access - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: odbc issue w/ access (/showthread.php?tid=12132) |
odbc issue w/ access - El Forum - 10-07-2008 [eluser]Unknown[/eluser] I've already written it up in this post: http://ellislab.com/forums/viewthread/93160/ The short version is that I'm trying to connect to MS Access. I can tell that it’s using CI_DB_odbc_driver->db_connect() to connect to the db, which is located in system/database/drivers/odbc/odbc_driver.php. For whatever reason, the $this object in there doesn’t seem to have any of the settings from database.php in it, so I have to re-add them there to get it to work. I also have to add $this->db->dbdriver = "odbc"; to my controller right after the $this->load->database(); call. |