When I try and update a field with a value containing a '?', update_attributes returns:
**NoMethodError**
You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.reverse
My controller is able to:
- Create a record with '?' as a field name.
- Edit/Save a record if a field containing '?' is left unchanged
- Edit/Save a record if a field containing '?' is changed to 'test'
Not able to:
- Edit/Save a record if a field containing '?' is changed to '?test' or 'test?'
- Edit/Save a record if a field containing 'test' is changed to '?'
I imagine active_record ignores unchanged fields, which is why the code works in this case.
I also see BEGIN and ROLLBACK in the log, so I assume the the error is caused by update_record failing to quote the string before passing it to the database. Is this a bug or am I supposed to quote form input explicitly?
My update method:
def update
@interface = Interface.find(params[:id])
if @interface.update_attributes(params[:interface])
redirect_to :action => 'show', :id => @interface.id
else
redirect_to :action => 'edit'
end
end
The model is blank.
Using update_attributes!, the message is (edit, still):
NoMethodError in Admin::InterfacesController#update
You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.reverse
Sorry, the ArgumentError I mentioned was irrelevant.
Original stack trace: http://pastebin.com/JQ3Cmrba
FIXED by reverting to rails 3.0.7 and mysql 0.2.7.
Possible cause:
'username' and 'password' are fields within the interface table. The interface_controller inherits from a base_controller:
class Admin::BaseController < ApplicationController
layout 'admin'
before_filter :authenticate
def index
end
protected
def authenticate
authenticate_or_request_with_http_basic do |username, password|
if username == 'test' and password == 'pass'
true
else
false
end
end
end
end
update_attributes!. This will raise an exception (if raised) and possibly provide more useful info. – Jits Jun 5 '11 at 15:21