Page 1 of 1

Where is my '\' ?

Posted: Sat 24 Jul 2010 20:44
by maciejmt
When update or insert

Code: Select all

Update PathReport='C:\Reports'
and load in application into TEdit, I see
C:Reports
I checked property "CheckBackslashes', but result is the same.

To avoid this problem, I make StringReplace with pattern '\ into '\

Posted: Mon 26 Jul 2010 09:32
by Dimon
MySQL Reference Manual says:
Within a string, certain sequences have special meaning. Each of these sequences begins with a backslash (“\”), known as the escape character. MySQL recognizes the following escape sequences:
\ A backslash (“\”) character.
...