I am querying a MSSQL DB with Perl using the DBD:ODBC module and FreeTDS.
The query response is returning successfully but backslash characters \
are removed from the response.
So for example Windows directories in the text of one of the fields returned that should read c:\some_dir\some_file
are returning c:some_dirsome_file
. Using iSQL or tSQL on the same linux box where I am running the query has the backslash characters present as expected.
Any idea on how to get it to not remove the backslashes or what might be causing it?