I am new to UIPath and have tried all the answers that I found using google search. I need to take user input and append it to sql execute query as like. e.g. select wellname from tbl1 where wellname like ‘%userinput%’.
I tried “select wellname from tbl1 where wellname like '%” + wellname + “'” and “select wellname from tbl1 where wellname like '%” & wellname & “'” and “select wellname from tbl1 where wellname =@wellname” nothing works.
please help