What can I do about single quotes? Is there a way for me to prevent the user from entering single quotes in the text box? or a way to change my sql codes so that it doesnt give an error if there is a single quote in the text field?
the following would give an error and i am looking for ways to avoid it. Any advice?
txt = "TE'ST"
sql = "update table set field = '" & txt & "'"
Thanks
the following would give an error and i am looking for ways to avoid it. Any advice?
txt = "TE'ST"
sql = "update table set field = '" & txt & "'"
Thanks