current : index > Mar , 2005

Mar , 2005 のアーカイブ

March 10, 2005

Illegal mix of collations
Posted at 01:13 PM  |  Category : [Eclipse,MySQL,etc]

 なんだか予想通りというか、やっぱり放置しちゃったわけですが。
とりあえず、思い出したことをダラダラと。

 12/8の日記に書いてたMySQLのエラー(下)ですが、

java.sql.SQLException: General error message
from server: "Illegal mix of collations
 (latin1_swedish_ci,IMPLICIT) and 
(sjis_japanese_ci,COERCIBLE) for operation '='"
これはデータベースの属性を変更してあげることで解決できました。
エラー自体は、swedishとjapaneseを=で結べないよって感じで、前者がサーバ側のコード、後者がクライアント側のコードみたいです。
 なので、
"create database databasename default character set sjis collate sjis_japanese_ci;"
って感じでデータベースを作ってあげるとダイジョーブだと思います。
すでに作成済みの場合は、alter database あたりでいけるんじゃないかなぁ…。試してないから自信はないですけど。

>>Read More ...

コメントをつける | トラックバック (0)