Quote:
Originally Posted by luseik
I have a problem in Arcade > Add game.
Does anyone help me how to fix it? Thank you.
|
Remove the ' in "Jason's".
An apostrophe indicates the beginning or end of a SQL character string. In other words, the SQL reply from the database indicates it tried executing this command:
Code:
SELECT gid, gname FROM games_list WHERE gname='Jason'
And the rest ('s Pong (Oblivion Knight)) is not recognised as valid SQL.
So either rename the game to Jasons Pong (Oblivion Knight), or add an escape character (backslash " \") in front of the name to make it go through.
HTH.
Peter