J
John Grandy
DataTable.Select(<where clause>)
If my <where clause> is something like
WHERE Name LIKE '%Sammy's%'
then the DataTable.Select() will fail (because it sees the apostrophe in
Sammy's as ending the match-string, and doesn't know what to do with the s%'
How to get around this ?
If my <where clause> is something like
WHERE Name LIKE '%Sammy's%'
then the DataTable.Select() will fail (because it sees the apostrophe in
Sammy's as ending the match-string, and doesn't know what to do with the s%'
How to get around this ?