Hi, For this query
String queryString = "select key from /"+ dataRegionName+".entrySet where key in set ($1) order by key"; Object[] params = new Object[1]; params[0] = new HashSet<String>(keys); Query query = queryService.newQuery(queryString); SelectResults<String> result = (SelectResults<String>) query.execute(params); How do I bind the parameter? Put a set/list is not working Thanks, Nan ---------------------------------------------------------------------- This message, and any attachments, is for the intended recipient(s) only, may contain information that is privileged, confidential and/or proprietary and subject to important terms and conditions available at http://www.bankofamerica.com/emaildisclaimer. If you are not the intended recipient, please delete this message.
