I've got an application that has an embedded insert statement that I do not have access to edit. It hits the MySQL 5.0 server like this:
INSERT INTO TABLE (PATH) VALUES ('D:\Reports\')
MySQL is complaining about this, because it looks like the slashes are being treated as escape characters. Is...