I have the following string which won't compile:
String formLookupPull = @"SELECT value1, '"+tableName+"', '"+columnName+"' FROM lkpLookups WHERE ""table"" = '" + tableName + "' and ""field"" = '" + columnName + "';";
The offending sections are :
""table"" =
and
""field"" =
THe compiler is getting all mixed up on the escape sequence. Can anyone see what's wrong?
thaks, brian