![]() |
Database Backup with Reserved Keyword - 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: Database Backup with Reserved Keyword (/showthread.php?tid=33002) |
Database Backup with Reserved Keyword - El Forum - 08-11-2010 [eluser]TigerWolf[/eluser] The Bug I found this error when trying to backup my database: Code: A Database Error Occurred This is because one of my table names ("Order") is a mysql reserved word. This broke the database backup. If I deleted this table the problem went away. I went digging in the code and found where the problem was: The Fix If you check out line 132 of mysql_utility in system/database/drivers/mysql - This line appears: Code: $query = $this->db->query("SELECT * FROM $table"); Code: $query = $this->db->query("SELECT * FROM `$table`"); Fixes the problem mentioned above. Thanks. So what should I do next? |