Question

I'm trying to get the result of a MySQL query (WikiMedia; a "varbinary field") using the following code:

rs = stmt.executeQuery("SELECT *  FROM `redirect` WHERE `rd_namespace` = 0 AND `rd_title` = XY);

        while (rs.next()) {         
             title = rs.getString("title");
        }

Unfortunately "title" kills all the german "umlauts" (ä, ü, ö etc)

How can I solve this problem?

Thanks :-)

Was it helpful?

Solution

Finally I solved the problem :-)

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top