I need to pass the character ' to my MSSQL database
Hi
I have a query with the following parameters.
return('Username='+value+'');
That works fine if the value is a number but not a string. The string value needs to between single quotes when I pass it to my database.
How do add a single quote to the above query parameter to indicate that the value is of type string?
It would be great if I could do something like this..
return('Username=''+value+'''); but of course that does not work