> cassdrv <- JDBC("org.apache.cassandra.cql.jdbc.CassandraDriver",
+ list.files("C://Users//VRavimurugan.GSIN//AppData//Roaming//RazorSQL//cassandra",pattern="jar$",full.names=T))
Error in .jfindClass(as.character(driverClass)1) : class not found
Tried this , but no luck RJDBC Cassandra -> Error in .jfindClass(as.character(driverClass)[1]) : class not found
Just to note, the answer you linked to says to change the driver name to be
if you are using the dependencies listed in that answer, as opposed to the older dependencies listed here.
As highlighted in this apparently related issue, a solution may be to remove the package, restart, and install it again.
In your case:
remove.packages("RJDBC")
install.packages("RJDBC")
This should fix it. A similar procedure should work for other packages giving the same error message.