1
I have a field from a table that saves 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 saves without the backslash. Therefore, it saves as follows:
c:log.txt
Does anyone have a hint of what might be happening? The path is typed in simple quotes (string).
Note: MYSQL (PHPMYADMIN)