Re: MySQL 4.1.3 Java/UTF8 support question

2004-11-26 Thread Ramesh Vadlapatla
See: > > http://dev.mysql.com/doc/mysql/en/Charset-defaults.html > > > > > Ramesh Vadlapatla <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > > > In my.cnf, I have: > > > [mysql] > > > default-character-set=utf8 > > >

MySQL 4.1.3 Java/UTF8 support question

2004-11-25 Thread Ramesh Vadlapatla
Hi, In my.cnf, I have: [mysql] default-character-set=utf8 When I connect via mysql client and try to run a query which has a "CONCAT" string function, it works fine and I get the proper output. Example: SELECT CONCAT ('a', ' - ', 'b') = a-b Now, I am trying to do make this work via Java and: I