while(resultSubGraph.next()) {
Integer dbId = resultSubGraph.getInt(1);
String id = resultSubGraph.getString(2);
Integer innerGraph = (Integer)resultSubGraph.getObject(3);
GraphNode node = new GraphNode(ENodeType.DEF_VERTEX, dbId, id);
array.add(node);
if(innerGraph != null) {
ArrayList<GraphNode> nodes = dbBuildSubGraphSkeleton(innerGraph);
for(GraphNode buf : nodes) {
node.add(buf);
}
}
}
return(array);
} catch(SQLException ex) {