hi!
I have a table which contain files paths.
my problem is, that when I insert a path, MySQL omit the separator char.
for example:
INSERT INTO A VALUES ('C:\qqq\www\eee.ttt');
will be saved in A as: C:qqqwwweee.ttt
what can I do for saving the path as it is?
(ofcourse, I mean solution withou duplicating the '\',)
I have to say, that there is another problem, for example c:\nate. mysql turn the \n to new line...
Thanks,
Nate