Quote:
quote:Originally posted by r_ganesh76
are you using the SqlCommand or OleDBCommand to do the update. If you use that you can eliminate the problem
|
Not entirely true: If you use Parameters in the Command objects then you don't have to worry about quote escaping. Just using a Command object alone isn't enough. You have to use it correctly.
Louisa,
It's just a matter of replacing ' with '' in your command text.
-
Peter