ResultSet resultAttribute = attrStatement.executeQuery(request);
while(resultAttribute.next()) {
int db_id_attr = resultAttribute.getInt(1);
String db_name = resultAttribute.getString(2);
String db_value = resultAttribute.getString(3);
v.addStorableAttribute(new StorableAttribute(db_id_attr, db_name, db_value));
}
} catch(SQLException ex) {
VisualGraph.log.printException(ex);
} finally {
if(attrStatement != null) {