Hi Team ,
Data I am trying to pass is getting converted into ascii , how can I avoid that in my script .
I have tried below module :
use utf8;
use feature 'unicode_strings';
I still get ascii data even on using above modules
Error that I am receiving is below :
$VAR1 = bless( {
'why' => 'Expected 8 or 0 byte long (19)'
}, 'Cassandra::InvalidRequestException' );
REFERENCE : http://perldoc.perl.org/Encode.html#Handling-Malformed-Data.
Thanks ,
Swati