I want to insert data in a composite column family through CQL 3.
create column family marks with
comparator = 'CompositeType(DateType,UTF8Type,UTF8Type)' AND
key_validation_class=UTF8Type AND
default_validation_class=UTF8Type;
The structure will be made one time with the cassandra-cli shell and result will be saved in cassandra as
**63** (2013-06-04 00:00:00 UTC, Science, 89.00): ''
(2013-06-04 00:00:00 UTC, Mathematics, 80.00): ''
(2013-06-04 00:00:00 UTC, English, 90.00):''
Here the row key is 63 which is Primary Key and Unique. And data will be saved in cassandra like above only in the column name. What will be the insert query for this and what will be the most suitable driver to achieve this CQL3 or thrift.