I changed the mysql tables from _abc to _ac; edited the config file and attempted an upgrade to 1.2.2. It failed with a similar message. When I looked at the log, referencing lines 74 and 114 in the mysql.php file I found this. Any idea what the fix is?
public function query($sql, $noexcept = false) {
//echo $this->database_name;
$time_start = microtime(true);
LINE 74 -> $resource = mysql_query($sql, $this->connection);
$time_exec = microtime(true) - $time_start;
if($noexcept){
$this->error = 'AbanteCart Error: ' . mysql_error($this->connection) . '<br />Error No: ' . mysql_errno($this->connection) . '<br />' . $sql;
return FALSE;
}else{
LINE 114 -> throw new AException(AC_ERR_MYSQL, 'Error: ' . mysql_error($this->connection) . '<br />Error No: ' . mysql_errno($this->connection) . '<br />' . $sql);
}
}
}