HOW CAN I FİX THAT ERROR
# support-forum
b
[ERROR] error #1054 while executing query "SELECT * FROM
players
WHERE name = `Acheron_Cleuts`": Unknown column 'Acheron_Cleuts' in 'where clause'
t
put the code too on your post
s
That means the player name doesn’t exist
add a statement if the query fails to allow the player to register
s
Copy code
`%s`
to
Copy code
'%s'
g
Still wrong
Use mysql format and
'%e'
to escape strings
g
Copy code
c
format(query, sizeof query, "SELECT * FROM `players` where name = '%e"", name);
`` = columns/tables '' = values