Hi All, How do I set the arguments for the SqlFieldsQuery if I have a variable number of arguments?
E.g., String sql = <SQL>; // can have variable number of arguments, i.e., "?". SqlFieldsQuery q = new SqlFieldsQuery(sql); q.setArgs(...); I am sorry if this is a trivial question but I don't seem to be able to get it right. thanks
