I am trying to add row in database as follows:
String query = "update Mutable e set e.Name = "Благодаря";
Statement s;
s.execute(query);
But it updates as ?????? in database. I am setting this name to a Russian string. But if i run same query in MySQL query browser then it updates the name correctly. I am not able to find the reason.