How to view cassandra keyspaces in IntelliJ database tool window?

Viewed 6361

Is there a way to add a Cassandra DB to IntelliJ so I can run CQL against it and view the keyspaces, etc?

1 Answers

It is done in the same way as you do it for connecting to other databases from IntelliJ IDEA, if you have a JDBC driver for Cassandra.

For example, you can use a Cassandra JDBC driver from cdata.com. In the following article, it describes how to use it in IntelliJ IDEA:

https://www.cdata.com/kb/tech/cassandra-jdbc-intellij.rst

Related