Howdy,
I want to make a sql that goes to oracle. the sql should be
"Select "cusip", "price structure" from tableA" (basically the columns are wrapped in double quotes.
I used this synatax in C#:
string mysql = "select "+'"'+"cusip,"+'"' + '"'+ "Price structure\"" from tableA"
and I am getting the following output:
select \"cusip,\"\"Price from tableA
This output can't be processed by Oracle.
How can I fix the syntax in C#, so that the output would be "Select "cusip", "price structure" from tableA"
thanks
nath