while inserting data into table I am getting error: "Codec not found for requested operation: [int <-> java.util.LinkedHashMap]."
I am following : https://docs.mulesoft.com/cassandra-connector/4.0/cassandra-connector-examples
with ExecuteCQLQuery flow.
Input from postman as json:
{
"cqlQuery": "INSERT INTO test_keyspace.test_table (id,dob) VALUES (?,? );",
"parameters":
[
{
"id": 12
},
{
"dob": "2006-03-15"
}
]
}
6 answers
@Shekh Muenuddeen this example is for insert entity operation of cassandra db connector. I want to use ExecuteCQLQuery operation from the same connector.