![]() |
error in using ODBC - 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: error in using ODBC (/showthread.php?tid=11925) |
error in using ODBC - El Forum - 09-28-2008 [eluser]kyko[/eluser] I am having trouble fetching the data using System DSN and ODBC. When i try issuing a query, it works but when fetching the rows, i got this error message Code: Fatal error: Call to a member function result() on a non-object in D:\webroot\sqws\cfapp\controllers\welcome.php on line 21 The script generating the error Code: $this->db->like('field', 'JOE'); Here's my config Code: $db['default']['hostname'] = "System"; I might be forgetting something..? error in using ODBC - El Forum - 10-05-2008 [eluser]kyko[/eluser] Got it to work. you can only use $this->db->query('YOUR QUERY') in odbc connections. |