2009-08-01から1ヶ月間の記事一覧

InnoDBの有効化

ビルド時に --with-plugins=innobase が必要 http://d.hatena.ne.jp/end0tknr/20090130/1233288533 ./configure --prefix=/usr/local/mysql-5.1.30/ --with-charset=utf8 --with-plugins=innobase --with-mysqld-user=mysql

rake db:fixtures:loadによる外部制約の無視 (Rails 2.3.2)

foreign keyを設定したテーブルへfixturesを使って大量のデータをテーブルに投入中、外部制約違反の誤ったデータがなぜかimportされていました。外部制約が正しく設定されていないのかと思いきや、mySQLのログを確認すると勝手に「SET FOREIGN_KEY_CHECKS = …

will_paginateのインストール

http://github.com/mislav/will_paginate/tree/mastergemでのインストールが推奨されているが、pluginとしてインストールしたかったので以下のコマンドを実行した。 script/plugin install git://github.com/mislav/will_paginate.git インストール手順には …