Post subject: Database ERROR:Database ERROR:You have an error in your SQL Posted: Jan 19, 2012 - 08:51 PM
Joined: Jan 16, 2012
California
Posts: 12
Location: California
Status: Offline
Using MySQL, running http://winids, the following appears:
Database ERROR:Database ERROR:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1 timestamp FROM acid_event ORDER BY timestamp ASC ), (SELECT TOP 1 timestamp FR' at line 1
Any idea what the syntax error is?
Here is a line from base_stat_common.php
$result = $db->baseExecute("SELECT (SELECT TOP 1 timestamp FROM acid_event ORDER BY timestamp ASC ), ".
"(SELECT TOP 1 timestamp FROM acid_event ORDER BY timestamp DESC )");
john11
Post subject: RE: Database ERROR:Database ERROR:You have an error in your Posted: Jan 19, 2012 - 09:24 PM
Joined: Jan 16, 2012
California
Posts: 12
Location: California
Status: Offline
Changed it to the following and there are not errors. Just not sure if this is the correct statement. Not very versed in MySQL. Anyone know if this is the correct "solution" to the syntax error above?
$result = $db->baseExecute("SELECT (SELECT timestamp FROM acid_event ORDER BY timestamp ASC LIMIT 1 ), ".
"(SELECT timestamp FROM acid_event ORDER BY timestamp DESC LIMIT 1)");
Morpheus
Post subject: RE: Database ERROR:Database ERROR:You have an error in your Posted: Jan 20, 2012 - 01:40 AM
Site Admin
Joined: Sep 04, 2003
East Coast - USA
Posts: 1463
Location: East Coast - USA
Status: Offline
Not sure, but did you use the BASE install from your MSSQL install. There are changes to the BASE code made for MSSQL that won't work for MySQL.