我想在rails和mysql上使用ruby来编写一个简单的测试程序 但是,在这个时候,我无法更新数据库记录。 因为我使用“mid”来替换“id”列 在这种情况下,我该怎么做才能更新记录?
问题:
Mysql::Error: Unknown column 'id' in 'where clause': UPDATE `messages` SET `message` = 'ccc', `subject` = 'aaa', `author` = 'bbb' WHERE `id` = NULL
我的代码:
def update
@message = Message.find(:first, :conditions => ["mid = ?", params[:id]])
if @message.update_attributes(params[:message])
flash[:notice] = 'Post was successfully updated.'
redirect_to gbook_path(:id => @message.mid)
else
format.html { render :action => "edit" }
end
end
数据库:
CREATE TABLE `demo_development`.`message` (
`mid` MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`subject` VARCHAR( 30 ) NOT NULL ,
`author` VARCHAR( 30 ) NOT NULL ,
`message` TEXT NOT NULL ,
`adddate` INT UNSIGNED NOT NULL
) ENGINE = MYISAM ;
答案 0 :(得分:5)
您需要告诉ActiveRecord您的主键不是'id'的惯例。
使用“set_primary_key”方法。
class User < ActiveRecord::Base
set_primary_key :mid
end
此处记录:http://api.rubyonrails.org/classes/ActiveRecord/Base.html#M002290