For example:
something like this works:
SELECT * FROM table_1 WHERE field_1 LIKE 'FOO_'
However this does not:
SELECT * FROM table_1 WHERE field_1 LIKE 'FOO%'
I've tried every escape sequence I can find. Tt either doesn't work or the HTML query interprets the % prior to the query.
You need to wrap your query in the
encodeURIComponentfunction