Hi
I am querying a sql database. When I use the test functionality of the service I query successfully as can be seen from this screenshot.
The problem is, that I have tried various syntax in the mapping query editor such as....
return('Location Like '%'+value+'%'');
return('Location Like "%'+value+'%"');
return('Location Like "''+value+'%'');
etc etc but nothing works.
If I do this
return('Location Like '+value+''); and the value is numeric it does not fail but the % cannot be used and I am actually querying a text field and not a numeric field.
Can you tell me what the equivalent syntax should be to match that of the syntax in the test screenshot? As you can see the tester does not display the whole url either?
Thank you