2010-05-28から1日間の記事一覧

MacOSX に PyPi から MySQL-python インストール時のエラー

MySQL は MacPorts から最新をインストール済み。 $ sudo pip install MySQL-python Downloading/unpacking MySQL-python Downloading MySQL-python-1.2.3c1.tar.gz (89Kb): 89Kb downloaded Running setup.py egg_info for package MySQL-python sh: mysql_…

MySQL の utf8_unicode_ci と utf8_general_ci の違いで出たエラー

自分で作ったストアドを呼ぶと以下のようなエラーが出た。 ERROR 1267 (HY000): Illegal mix of collations (utf8_unicode_ci,IMPLICIT) and (utf8_general_ci,IMPLICIT) for operation '='単純に文字コードが違うから出てるよう。 mysql> SHOW VARIABLES LI…