Araq, To reproduce: sql "INSERT INTO my_table (my_col) values (?)", "my_string"
In the database this becomes: "my_string"
I saw this in sqlite and mysql.
To work around this I started using: sql ""INSERT INTO my_table (my_col) values
('" & myvar & "')"
Now it doesn't escape underscores, but of course if the string in myvar
contains a question mark I get an error...
Is there any way to turn off the automatic question mark replacement?
