PDA

View Full Version : Database error


mannaraja
12-05-2008, 09:38 AM
Please any one help.i am got following databse error
Database error in vBulletin 3.7.4:
http://muthumobiles.org/forums/
Invalid SQL:

SELECT thread.threadid, thread.title, thread.lastpost, thread.forumid, thread.replycount,
thread.lastposter, thread.dateline, thread.postusername, thread.postuserid,
IF(views<=replycount, replycount+1, views) AS views, thread.visible, thread.open,
user.username, user.userid, user.usergroupid,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid
FROM thread AS thread
LEFT JOIN user AS user ON (user.username = thread.lastposter)
WHERE NOT ISNULL(thread.threadid) AND thread.visible = '1' AND thread.open != '10'
AND thread.forumid NOT IN (Array)
ORDER BY lastpost DESC
LIMIT 0, 10;

MySQL Error : Unknown column 'Array' in 'w

calorie
12-05-2008, 02:23 PM
The problem appears to be that some variable used in the query is an array instead of a comma separated list of forum IDs:

AND thread.forumid NOT IN (Array)