This code works fine, which shows you can use the useUnicode and
characterEncoding properties with simple Statement's:
Properties prop = new Properties();
Class.forName("org.gjt.mm.mysql.Driver");
// true as String and not: Boolean.valueOf(true)!
prop.put("useUnicode", "true");
prop.put("char
You would need to put "useUnicode=true&characterEncoding=UTF-8" in your JDBC
url, like the README directs. See
http://java.sun.com/j2se/1.4/docs/guide/intl/encoding.doc.html for a list of
supported encodings.
-mark
- Original Message -
From: "John D. Stein" <[EMAIL PROTECTED]>
To: <[