G
glenn
I have a function call that needs text sent to it for a query. Some fields
require a double quote around the field name so I do my variable as such...
query = "field1 = val1 and \"field2\" = val2";
This is all cool, however, when I send that query string through a function
call it ends up with the following:
query = "field1 = val1 and \\\"field2\\\" = val2";
It backslashes the original backslash that I had to put there in order to
get the compiler to work. Can anyone tell me another way to do this so I
can finish this program? its the last thing I have to figure out...
Thanks,
glenn
require a double quote around the field name so I do my variable as such...
query = "field1 = val1 and \"field2\" = val2";
This is all cool, however, when I send that query string through a function
call it ends up with the following:
query = "field1 = val1 and \\\"field2\\\" = val2";
It backslashes the original backslash that I had to put there in order to
get the compiler to work. Can anyone tell me another way to do this so I
can finish this program? its the last thing I have to figure out...
Thanks,
glenn