Feche1320 Posted January 14, 2019 Share 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 Link to comment
ma2med Posted January 14, 2019 Share Posted January 14, 2019 try this dbExec(db, "UPDATE stats SET anyvalue = ?", name) Link to comment
Feche1320 Posted January 15, 2019 Author Share Posted January 15, 2019 I will try ASAP, thanks Link to comment
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