large graph data visualization with JDBC/ODBC

839 views Asked by At

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?

1

There are 1 answers

0
Tomasz Nurkiewicz On BEST ANSWER

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.