Does mysql3.2x.xx support Chinese?
[code]
...
Class.forName("org.gjt.mm.mysql.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/test");
String sql = "INSERT INTO Item(id,name) VALUES (?,?)";
PreparedStatement ps = conn.prepareStatement(sql);
ps.setInt(1,item.id);
ps.setString(2,new String(item.name.getBytes("ISO-8859-1"),"GBK"));
ps.executeUpdate();
...
name field include "?"

