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?