Hello everyone,
I am trying to insert some records into a database but I ran in to a problem using the following statement:
INSERT INTO finalMembership (memberID, salutation, fname, lname) VALUES('42', 'Mrs', 'Mary Patricia','O'Neill')
because the last name has ' in it, the statement gives me an error. Is there some way to temporarly strip the name of the ' or preferably to do something that would add O'Neill but not have the ' read? Maybe somehow make the value O'Neill = O\'Neill?
If I could do the O\'Neill thing would it put the \ into the database as well, cause I wouldn't want that...
Thanks for your time, any help is greatly appreciated.