Quote:
Originally Posted by husain
From your error report, is it safe to assume that all problems faced were because of poorly written SQL queries?
|
Most of the errors appear to be due to the extra semi colon.
Also, once you know the sql is correct, you should add the following line to the start of your installation code;
PHP Code:
$db->hide_errors()
and this to the end;
PHP Code:
$db->show_errors()
The simple reason being that if tables or columns already exist then failure messages are expected, but need to be ignored.