Foolkep Posted April 12, 2018 Share Posted April 12, 2018 So this is the function: https://wiki.multitheftauto.com/wiki/DbExec bool dbExec ( element databaseConnection, string query [, var param1 [, var param2 ...]] ) And I have an SQL Query like: dbExec(connection, "INSERT INTO table_name VALUES('1','Bob','What\'s the time?')") The function think that the ?(question mark) should be replaced with the param1 value and not handle it as a string and this couse an error. How should I escape this? Link to comment
Dimos7 Posted April 13, 2018 Share Posted April 13, 2018 dbExec(connection, "INSERT INTO table_name (the values you want change) VALUES(?,?,? )", "1", "Bob", "What\'s the time" ) 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