We are trying to use Cassandra plugin in the ireport. The plugin etc. is properly embedded in iReport. The CQL written fetches only 3 columns and the column name appears in Read Fields also.
Problem is : The fields returned are ByteBuffer whereas iReport will not accept ByteBuffer as the data type for the field.
Tried converting the ByteBuffer to Byte array and then converted it to string using a new string object. String s=new String(byteArray); But the new string object is not getting created inside iReport. All I can see is some machine characters.
In the output I c, MachineCharacters and a statement "Execute CQL Statement" and again Machine characters.. What might be the problem.
No documentation on iReport/Jasper Forum etc. is present for this case. Can anyone please suggest.