*/
public class BetweenTest {
@Test
public void testBetween() throws TDHSException {
TDHSClient client = new TDHSClientImpl(new InetSocketAddress("t-wentong-u.local", 9999), 1);
TDHSResponse r = client.query().use("test").select("id", "v", "i").from("test").where().fields("i")
.between(new String[]{"2"},
new String[]{"5"}).and().field("i").not("2").and().field("i").not("5").get();
List<List<String>> fieldData = r.getFieldData();
for (List<String> fd : fieldData) {
for (String v : fd) {
System.out.print(v + " ");
}
System.out.print("\n");
}
client.shutdown();
}