aherlambang
aherlambang

Reputation: 14418

large graph data visualization with JDBC/ODBC

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?

Upvotes: 0

Views: 855

Answers (1)

Tomasz Nurkiewicz
Tomasz Nurkiewicz

Reputation: 340933

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.

Upvotes: 1

Related Questions