I m able to connect cassandra and fetch rows from the cassandra database. Now i want to insert the data from .net on to cassandra
but using insert query of cql is not working because i have fields in my table which has null values for the columns and cassandra would not take null values. So now i have to query it the other way.. i.e, i can use set [key] [column name] = column value; but can i send this command from .net to cassandra. I mean we have execute_cql_query() for interacting in a cql way, is there anything available for the other way? that is the commands we execute on cassandra-cli.bat ?