** RESOLVED, see below **
So, I have a successful connection which I can see in my MySQL Administrator tool.
Now, I run this:
[lua]
function iA.cb(res, stat, err)
print(err … “|” … stat)
–if err then print("TMYSQL ERROR iA.cb : " … stat) end
end
tmysql.query(“CREATE TABLE IF NOT EXISTS admins (id int(6) NOT NULL AUTO_INCREMENT, steamid varchar(25), PRIMARY KEY (id))”, iA.cb)
[/lua]
It never prints anything (indicating it never got to the callback), and it never created the table. The same thing happens with any other queries I do, they never seem to get to the callback.
No lua errors.