Handles the authentication to CassandraDB.
ConnectionString - The connection string used to access the database
DatabaseName - The name of the database that you are trying to access
HostName - The host of the database
Password - The password used to log in to the database
Port - The port used in the connection to the database
Username - The username used to log in to the database
Executes a non-query statement.
Statement - Used for general purposes, other than select. For example Insert, Update or Delete.Insert into KeyspaceName.TableName(ColumnName1, ColumnName2, ColumnName3 . . . .)
values (Column1Value, Column2Value, Column3Value . . . .)
Update KeyspaceName.TableName
Set ColumnName1=new Column1Value,
ColumnName2=new Column2Value,
ColumnName3=new Column3Value,
...
Where ColumnName=ColumnValue
Delete from KeyspaceName.TableName
Where ColumnName1=ColumnValue
Executes a Select on a CassandraDB and returns the result.
Keyspace Name - A string representing the name of the keyspace to be created
Strategy Class - A string representing the replication class
SubOptions - A dictionary in which key is the name of sub-options, value is a value for that sub-option. For example, here you can specify the replication_factor.
Gets the name of the current keyspace.
Changes the current keyspace.
Returns the cluster information and the state.