Code:
SQL_Execute(Query)
if(!SQL_Execute(Query))
You have two SQL_Execute here too. You should remove one of them.
^--- This means select all columns FROM the table.
Code:
SELECT `job` FROM ...
^---This means only select the job column from the table.
Don't use SELECT * job. I believe that incorrect.
Other than that I do not see anything wrong with the code or the row for that steamid does not exist
__________________