0

I have looked at Gephi and tried to play around with it, however it only supports MySQL, SQLServer, and postgreSQL. My database connectivity is JDBC/ODBC. What other graph visualization software would be able to connect to such database?

aherlambang
  • 14,290
  • 50
  • 150
  • 253

1 Answers1

1

Graphviz is magnificent, it can handle enormously big data sets and draw graphs. But this is a standalone tool that draws graphs based on its own DSL, e.g.:

digraph G {
    A->B;
    A->C
}

So you would have to produce such a file first and then feed GraphViz with it.

Tomasz Nurkiewicz
  • 334,321
  • 69
  • 703
  • 674