Hello Everyone;
I use this script at below.it works fine
“select * from data where field1 LIKE '%” + document.childByName(“text2”).content.text + “%’”
but i want to use text1 instead of field1.I mean, field name should come from text1
I tried that code but it didnt work
“select * from data where '” + document.childByName(“text1”).content.text + “’ LIKE '%” + document.childByName(“text2”).content.text + “%’”