Feche1320 Posted January 14, 2019 Posted January 14, 2019 If I have a string with 'ilegal' characters, Mysql throws an error (1064) local name = getPlayerName(source) -- Let's say that the string returned by getPlayerName is Fe'che dbExec(db, "UPDATE stats SET anyvalue = '" ..name.. "'") I tried with gsub -> name:gsub("\'", "\''"), but no success
ma2med Posted January 14, 2019 Posted January 14, 2019 try this dbExec(db, "UPDATE stats SET anyvalue = ?", name)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now