How to pass variable from java file to IN clause of a query in xml file

filmdll

New Member
For example,In java file, \[code\]String[] arrayTest= {"a", "b", "c"};String strTest = "";for (String test: arrayTest) { strTest = strTest + ", " + test;}strTest = strTest.substring(1);\[/code\]In xml file, pass the variable to IN clause like:\[code\]Where test in (#strTest#)\[/code\]But it did not work.
 
Back
Top