Update README.md

This commit is contained in:
Gideon le Grange 2014-11-06 16:52:51 +02:00
parent 139b39d64a
commit 0c48b49f23
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ List<Map<String, String>> rs = con.execute("/interface/print where type=vlan");
### Selecting returned fields ### Selecting returned fields
The same query, but we only want certain result fields names Print all interfaces of type 'vlan' and return their name. The same query, but we only want certain result fields names: Print all interfaces of type 'vlan' and return just their name.
```java ```java
List<Map<String, String>> rs = con.execute("/interface/print where type=vlan return name"); List<Map<String, String>> rs = con.execute("/interface/print where type=vlan return name");