Can RoR deal with char(1) fields as "boolean" fields? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T01:26:30Zhttp://stackoverflow.com/feeds/question/521118http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/521118/can-ror-deal-with-char1-fields-as-boolean-fields0Can RoR deal with char(1) fields as "boolean" fields?Wayne M2009-02-06T16:57:18Z2009-02-06T17:38:08Z
<p>I am looking at using Ruby on Rails for a storefront that has to make use of existing data, but I can create my own database schema if I need to. A lot of the fields in the existing data are char(1) emulating a boolean field (i.e. Y/N) for, I believe, cross-platform portability. Since the data is prone to change, I don't want to have to change the existing structure and convert these fields to bit/boolean fields.</p>
<p>If I do use Rails I really would like to make use of Ruby's beautiful boolean syntax and say something like <code><%= image_tag 'recycled.jpg' if product.recycled? %></code>, but will Rails recognize char(1) as a boolean, or do I have to define those methods myself in the model like:</p>
<pre><code>class Product < ActiveRecord::Base
# ... other stuff here
def recycled?
self.recycled == 'Y'
end
end
</code></pre>
<p>I'm thinking I will have to redefine them myself, which is no big deal, I just want to make sure since using char(1) as yes/no values isn't something I've used in the past.</p>
http://stackoverflow.com/questions/521118/can-ror-deal-with-char1-fields-as-boolean-fields/521151#521151-1Answer by Cade Roux for Can RoR deal with char(1) fields as "boolean" fields?Cade Roux2009-02-06T17:03:52Z2009-02-06T17:03:52Z<p>Can't you just wrap it in your database engine with a view or stored procedure to produce a consistent interface to your application?</p>
http://stackoverflow.com/questions/521118/can-ror-deal-with-char1-fields-as-boolean-fields/521200#5212001Answer by bradheintz for Can RoR deal with char(1) fields as "boolean" fields?bradheintz2009-02-06T17:15:41Z2009-02-06T17:25:13Z<p>I'd probably attack it at the model level - when you load a row into a model instance, compute a boolean attribute based on the char. Add a getter for the virtual attribute that returns this value, and a setter that updates both the boolean and the underlying char.</p>
http://stackoverflow.com/questions/521118/can-ror-deal-with-char1-fields-as-boolean-fields/521299#5212991Answer by floehopper for Can RoR deal with char(1) fields as "boolean" fields?floehopper2009-02-06T17:38:08Z2009-02-06T17:38:08Z<p>As far as I know, what you describe is not possible with <code>ActiveRecord</code> out-of-the-box.</p>
<p>However, if you have a lot of columns like this you could look at doing a little bit of meta-programming to provide a declarative way to add the relevant accessor logic. Something like :-</p>
<pre><code>class Product < ActiveRecord::Base
yes_no_accessor :recycled
end
</code></pre>
<p>Another possibility is to monkey-patch <code>ActiveRecord</code>. I think the relevant method is <code>ActiveRecord::ConnectionAdapters::Column.value_to_boolean(value)</code>. You could try overriding the <code>ActiveRecord::ConnectionAdapters::Column::TRUE_VALUES</code> constant to include <code>'Y'</code>. I haven't actually tried this!</p>