I want to connect a code in R with datastax cassandra, I have found the package RCassandra and in several examples it shows how to connect to cassandra, but I need an example which adds a "secure-bundle.zip" which is required to connect to Datastax.
So far I got this:
install.packages("RCassandra")
library("RCassandra")
RC.connect(host="c58d5d9e-015a-4255-8f6c-05784a7c59ba-us-east1.db.astra.datastax.com",port=31808) -> con
RC.login(con, username = "user", password = "pwd")
But I need to add to this snippet a line for my "secure-bundle.zip". Is there a way to do that? Please, help.