problem with storing kannada text to mysql db
hi all,
i am storing kannada text to mysql db from JTextField
while retrieving it showing ?.
when i type kannada text Directly in mysql db and
if i fetch the data from mysql db to jtextfield it showing kannada text.
but when i type in jtextfield and store to mysql, while retrieving it
showing ?.
and i also tried to convert the kannada text in to utf-8 formate while storing but it did'n't work.
String kanVal = new String(tfStateNameKan.getText(), "UTF-8");
please help to solve this problem
and i also mention utf-8 formate in url jdbc:mysql://localhost:3306/kantest?useUnicode=true&;characterEncoding=utf8"
is it correct?
thanks in advance
daya

