Example page has a missing java statement.
Current
[code]
for (Iterator iter = tableList.iterator(); iter.hasNext();) {
System.out.println(tableName);
}
[/code]
Should be
[code]
for (Iterator iter = tableList.iterator(); iter.hasNext();) {
String tableName = (String) iter.next();
System.out.println(tableName);
}
[/code]