Forum Discussion
PaulMS
8 years agoSuper Contributor
Try without Results because that is the root node and use text()
dbsluper.ResultSet.each{
dbvalues.add(it.text())
}
but that won't be an array because there is only 1 ResultSet.
If you need the row/s children
dbsluper.ResultSet.Row.children().each{
dbvalues.add(it.text())
}