vote up 0 vote down star

Hi

I would like to know if there is a function to correctly escape string literals for filter expressions.

e.g.

DataTable.Select(String.Format("[name] = '{0}'", MyName))

If MyName contains ' or a number of other key characters an exception is generated. The Microsoft documentation indicates that these charaters should be correctly escaped, however there is a bit of confusion on how this is to be done.

I have tried replacing ' with \' and also ['] as indicated in the documentation, however the query still fails.

Many Thanks

flag

1 Answer

vote up 1 vote down

Balls. Might help if I read the comments of the article I cited!

If I replace ' with two single ' the query works.

link|flag
That's not even DataTable specific, but rather the general way of doing it in SQL. :-) – Tomalak Dec 22 '08 at 12:31
Although I use parameterised queries, so don't come across the need for this in SQL. But I get you. – Ady Dec 22 '08 at 12:35
If you use parameterized queries you are on the safe side anyway, but a TableFilter is an in-memory subset of SQL, consisting of a WHERE clause that must conform to SQL syntax rules. It's just a string, so no parameters here. That's why this extra step must be taken. – Tomalak Dec 22 '08 at 14:40

Your Answer

Get an OpenID
or

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