Thomas Waswasi wrote:
> I want to insert some rows into a sqlite3 database where some tables
> contain BOOLEAN columns.
> 
> Some older applications accessing the same DB require boolean columns
> to be 0 and 1, whereas the default behaviour of the sqlite Adapter is
> a mapping of true/false values to 't' and 'f' in the database.
> 
> My current workaround is a row insert trigger in the database, but I'd
> rather have this logic in the AR model class.
> 
> Is there some way to change the type mapping on model level ?

Not on the model level, but you could monkey-patch the AR quoting 
function.

--
Roderick van Domburg
http://www.nedforce.nl
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
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