Modified:
branches/branch_5_0/connector-j/src/com/mysql/jdbc/ConnectionProperties.java
Log:
modified an initial value of ConnectionProperties.useUnicode from false to true, because it was not matched with what reference manual said.
Modified: branches/branch_5_0/connector-j/src/com/mysql/jdbc/ConnectionProperties.java
===================================================================
--- branches/branch_5_0/connector-j/src/com/mysql/jdbc/ConnectionProperties.java 2005-12-19 16:48:18 UTC (rev 4710)
+++ branches/branch_5_0/connector-j/src/com/mysql/jdbc/ConnectionProperties.java 2005-12-19 21:07:17 UTC (rev 4711)
@@ -1313,7 +1313,7 @@
private BooleanConnectionProperty useUnicode = new BooleanConnectionProperty(
"useUnicode",
- false,
+ true,
"Should the driver use Unicode character encodings when handling strings? Should only be used when the driver can't determine the character set mapping, or you are trying to 'force' the driver to use a character set that MySQL either doesn't natively support (such as UTF-8), true/false, defaults to 'true'",
"1.1g", MISC_CATEGORY, 0);
| Thread |
|---|
| • Connector/J commit: r4711 - branches/branch_5_0/connector-j/src/com/mysql/jdbc | tikeda | 19 Dec |