I have a field in a table that holds the path to a locally stored file. When I run the following command:
UPDATE tabela1 set caminho = 'c:\logs\caminho.txt' where cod_tab = 1
it writes without the backslash. Therefore, it saves as follows:
c: logspath.txt
Does anyone have a suggestion of what might be happening? The path is enclosed in single quotation marks (string).
Note: MYSQL (PHPMYADMIN)