vote up 1 vote down star

Wary of Jeff Atwood's "Bathroom Wall of Code" post, I thought it would be useful to have a trustworthy SQL sanitisation function for VBScript, similar to PHP's mysql_real_escape_string() function.

So, how can I properly sanitise data input into a SQL query using VBScript?

flag

75% accept rate

2 Answers

vote up 4 vote down check

Don't do it. Use parameterized queries instead.

link|flag
+1. I can think no situation where sanatizing strings can ever be better than using a parameterised SQL. – AnthonyWJones Jun 3 at 8:31
vote up 1 vote down

Alternatively, use the Escape function as below

wscript.echo Escape(chrw(1023) & vbtab & vbnewline & " ")

which gives

%u03FF%09%0D%0A%20

. The reverse is UnEscape()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.