- 
        1. Re: MySql Datasource Encodingazur Jan 16, 2003 2:42 PM (in response to winsome_zhong)It looks like its reading the rest of the line without parsing the &-sign... Try separating with spaces or something that JBoss recognises as a valid separator. 
 Hope it helps. /AzUr
- 
        2. Re: MySql Datasource Encodingwinsome_zhong Jan 16, 2003 9:52 PM (in response to winsome_zhong)the space can not work too,the warning is same as before 
- 
        3. Re: MySql Datasource Encodingwinsome_zhong Jan 19, 2003 8:06 PM (in response to winsome_zhong)anybody help me?? 
- 
        4. Re: MySql Datasource Encodinghkleo Jan 23, 2003 1:33 AM (in response to winsome_zhong)Try this 
 <config-property name="XADataSourceProperties" type="java.lang.String"><![CDATA[jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=gb2312]]></config-property>
 If it does not work, try this
 <config-property name="XADataSourceProperties" type="java.lang.String"><![CDATA[jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8]]></config-property>
 Cheers,
 Leo Tai
- 
        5. Re: MySql Datasource Encodingwinsome_zhong Feb 9, 2003 9:26 PM (in response to winsome_zhong)can not work 
- 
        6. Re: MySql Datasource Encodinglaurent.wozniak Feb 20, 2003 5:56 AM (in response to winsome_zhong)Hello, 
 Got the same problem using encoding latin1.
 Solved by replacing & by &amp; in jdbc url.
 I use jboss 3.0.4 (works also fine with 2.4.3 using another syntax)
 <config-property name="ConnectionURL" type="java.lang.String">jdbc:mysql://myserver:3306/mydb?useUnicode=true&amp;characterEncoding=latin1</config-property>
 try this:
 <config-property name="XADataSourceProperties" type="java.lang.String">URL=jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&amp;characterEncoding=gb2312</config-property>
 By the way, which version of jboss are you using (your config syntax is different from mine) ?
 I had a dream ... the syntax stops changing ...
 Cheers,
 Laurent
- 
        7. Re: MySql Datasource Encodinglaurent.wozniak Feb 20, 2003 6:03 AM (in response to winsome_zhong)Hello, 
 Got the same problem using encoding latin1.
 Solved by replacing & by &amp; in jdbc url.
 I use jboss 3.0.4 (works also fine with 2.4.3 using another syntax)
 <config-property name="ConnectionURL" type="java.lang.String">jdbc:mysql://myserver:3306/mydb?useUnicode=true&amp;characterEncoding=latin1</config-property>
 try this:
 <config-property name="XADataSourceProperties" type="java.lang.String">URL=jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&amp;characterEncoding=gb2312</config-property>
 By the way, which version of jboss are you using (your config syntax is different from mine) ?
 I had a dream ... the syntax stops changing ...
 Cheers,
 Laurent
 
     
     
    