Hello all,

I have a strange one here but there's probably a very simple solution
(though I've been unable to google it).

I have a varchar(100) column called name (t.string :name, :limit => 100,
:null => false).

I have a ....
  validates_uniqueness_of :name,
    :scope => :event_group_id,
    :case_sensitve => false

which is producing the following SQL ...
SELECT `event_categories`.id FROM `event_categories` WHERE
(`event_categories`.`name` = BINARY 'road' AND
`event_categories`.event_group_id = 790727023) LIMIT 1;

Note the BINARY in the query. How could this happen?

I have other requests to that table (JQuery autocomplete, for example) and
it doesn't introduce the BINARY.

I am running MySQL version 5.1.49-1ubuntu8.1
Rails 2.3.8

Any pointers would be great

TIA

-ants

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to