how to use backslash ?

how to use backslash ?

am 09.03.2006 11:49:39 von taru

MySQL treats backslash "\" as an escape character , so if we enter a
string "abcd\efgh" into MySQL database only "abcd" gets into the DB.

Is there any specific database setting available in MySQL to alter this
behaviour so that the entire string "abcd\efgh" gets inserted to the DB

Re: how to use backslash ?

am 09.03.2006 16:21:14 von Markus Popp

Hi,

to use the backslash, you have to escape the backslash - so a \ becomes a
\\.

Markus