Hi all,
I want to escape backslashes in the below query - DB is MS SQL Server so addslashes() no use.
The problem is here... 'O\\'Co',
MS SQL Server won't accept it.
INSERT INTO training(class_ID, ffnumber, firstname, surname, attended, passed, date_reg) VALUES('7026', 'ff18728', 'Ann', 'O\\\'Co', 'No', 'No', {fn NOW()}) ESCAPE '\'
Any ideas?
Thanks.