Hi,
Thanks for replying.
i think you didnot get my question right.
Actually i have defined a input variable ( say x=abc) which i am trying to pass through a logic where for the same variable i will be getting data extracted from SQL database. Problem i am facing is, if i am changing the input to double quoted value , jsl is throwing this error -jsl is throwing an error ,it says unexpected "2", perhaps there is missing ";" or ","
Please find the example on the same
//Create Database Connection
dbc = Create Database Connection(
XXX);
SLNo = " ABC1"2'";
sqlQuery = "execute [dbo].[XXX] @SLNo = '" || SLNo || "'";
Error msg : jsl is throwing an error ,it says unexpected "2", perhaps there is missing ";" or ","
Question is what shouild i do if SLNo data is in double Quote format. it is working fine without double quoted inputs.